automation: build with 32 bit stretch
authorWei Liu <wei.liu2@citrix.com>
Mon, 23 Jul 2018 08:04:46 +0000 (09:04 +0100)
committerWei Liu <wei.liu2@citrix.com>
Wed, 25 Jul 2018 14:22:58 +0000 (15:22 +0100)
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Doug Goldstein <cardoe@cardoe.com>
.gitlab-ci.yml

index 682e48ef51bfaf93f6fe1f68dd2d54831b4ed09f..1b9877b348e567edfa9cef0a4253300b07cc229b 100644 (file)
@@ -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: