From: Wei Liu Date: Mon, 23 Jul 2018 08:04:46 +0000 (+0100) Subject: automation: build with 32 bit stretch X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3543 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=af190df6eacec68dff21694b2ede26d0199338f6;p=xen.git automation: build with 32 bit stretch Signed-off-by: Wei Liu Acked-by: Doug Goldstein --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 682e48ef51..1b9877b348 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -103,6 +103,38 @@ debian-stretch-gcc-debug: debug: y XEN_TARGET_ARCH: x86_64 +debian-stretch-32-clang: + <<: *build + variables: + <<: *clang + CONTAINER: debian:stretch-i386 + debug: n + XEN_TARGET_ARCH: x86_32 + +debian-stretch-32-clang-debug: + <<: *build + variables: + <<: *clang + CONTAINER: debian:stretch-i386 + debug: y + XEN_TARGET_ARCH: x86_32 + +debian-stretch-32-gcc: + <<: *build + variables: + <<: *gcc + CONTAINER: debian:stretch-i386 + debug: n + XEN_TARGET_ARCH: x86_32 + +debian-stretch-32-gcc-debug: + <<: *build + variables: + <<: *gcc + CONTAINER: debian:stretch-i386 + debug: y + XEN_TARGET_ARCH: x86_32 + # Ubuntu Trusty's Clang is 3.4 while Xen requires 3.5 ubuntu-trusty-gcc: