From: Anthony PERARD Date: Wed, 3 Apr 2019 17:33:58 +0000 (+0100) Subject: automation: Add Arch Linux container and build jobs X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2410 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7f6658d9cb9c11d80f85cc07fdca014938a3457e;p=xen.git automation: Add Arch Linux container and build jobs One particularity of Arch Linux, /usr/bin/python is python3. Signed-off-by: Anthony PERARD Acked-by: Doug Goldstein --- diff --git a/automation/build/archlinux/current.dockerfile b/automation/build/archlinux/current.dockerfile new file mode 100644 index 0000000000..9af5d66afc --- /dev/null +++ b/automation/build/archlinux/current.dockerfile @@ -0,0 +1,52 @@ +FROM archlinux/base +LABEL maintainer.name="The Xen Project" \ + maintainer.email="xen-devel@lists.xenproject.org" + +# Enable multilib repo, for dev86 package +RUN echo $'[multilib]\nInclude = /etc/pacman.d/mirrorlist' >> /etc/pacman.conf + +RUN pacman -S --refresh --sysupgrade --noconfirm --noprogressbar --needed \ + base-devel \ + bin86 \ + bridge-utils \ + bzip2 \ + dev86 \ + dtc \ + e2fsprogs \ + ghostscript \ + git \ + gnutls \ + iasl \ + inetutils \ + iproute \ + libaio \ + libcacard \ + libgl \ + libjpeg-turbo \ + libnl \ + libpng \ + libseccomp \ + markdown \ + net-tools \ + nss \ + perl \ + pixman \ + pkgconfig \ + python \ + sdl \ + sdl2 \ + spice \ + spice-protocol \ + systemd \ + transfig \ + usbredir \ + wget \ + xz \ + yajl \ + zlib + +ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl + +RUN useradd --create-home user +USER user +WORKDIR /build diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml index b70797e82d..c29a76e9ff 100644 --- a/automation/gitlab-ci/build.yaml +++ b/automation/gitlab-ci/build.yaml @@ -129,6 +129,16 @@ # Jobs below this line +archlinux-gcc: + extends: .gcc-x86-64-build + variables: + CONTAINER: archlinux:current + +archlinux-gcc-debug: + extends: .gcc-x86-64-build-debug + variables: + CONTAINER: archlinux:current + centos-7-2-gcc: extends: .gcc-x86-64-build variables: diff --git a/automation/scripts/containerize b/automation/scripts/containerize index 09d130bbd6..01c44da93c 100755 --- a/automation/scripts/containerize +++ b/automation/scripts/containerize @@ -15,6 +15,7 @@ die() { # BASE="registry.gitlab.com/xen-project/xen" case "_${CONTAINER}" in + _archlinux|_arch) CONTAINER="${BASE}/archlinux:current" ;; _centos6) CONTAINER="${BASE}/centos:6" ;; _centos7) CONTAINER="${BASE}/centos:7" ;; _centos72) CONTAINER="${BASE}/centos:7.2" ;;