]> xenbits.xensource.com Git - people/dwmw2/xen.git/commitdiff
automation: build with debian unstable
authorWei Liu <wei.liu2@citrix.com>
Mon, 20 Aug 2018 13:05:11 +0000 (14:05 +0100)
committerWei Liu <wei.liu2@citrix.com>
Mon, 20 Aug 2018 13:05:11 +0000 (14:05 +0100)
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Doug Goldstein <cardoe@cardoe.com>
.gitlab-ci.yml

index 6328da92e0a772a3a2f7b74321a81f222b98d5e7..c2d695ff6f7e1ee126005b531d3e959e4c07aa5e 100644 (file)
@@ -151,6 +151,70 @@ debian-stretch-32-gcc-debug:
     debug: y
     XEN_TARGET_ARCH: x86_32
 
+debian-unstable-clang:
+  <<: *build
+  variables:
+    <<: *clang
+    CONTAINER: debian:unstable
+    debug: n
+    XEN_TARGET_ARCH: x86_64
+
+debian-unstable-clang-debug:
+  <<: *build
+  variables:
+    <<: *clang
+    CONTAINER: debian:unstable
+    debug: y
+    XEN_TARGET_ARCH: x86_64
+
+debian-unstable-gcc:
+  <<: *build
+  variables:
+    <<: *gcc
+    CONTAINER: debian:unstable
+    debug: n
+    XEN_TARGET_ARCH: x86_64
+
+debian-unstable-gcc-debug:
+  <<: *build
+  variables:
+    <<: *gcc
+    CONTAINER: debian:unstable
+    debug: y
+    XEN_TARGET_ARCH: x86_64
+
+debian-unstable-32-clang:
+  <<: *build
+  variables:
+    <<: *clang
+    CONTAINER: debian:unstable-i386
+    debug: n
+    XEN_TARGET_ARCH: x86_32
+
+debian-unstable-32-clang-debug:
+  <<: *build
+  variables:
+    <<: *clang
+    CONTAINER: debian:unstable-i386
+    debug: y
+    XEN_TARGET_ARCH: x86_32
+
+debian-unstable-32-gcc:
+  <<: *build
+  variables:
+    <<: *gcc
+    CONTAINER: debian:unstable-i386
+    debug: n
+    XEN_TARGET_ARCH: x86_32
+
+debian-unstable-32-gcc-debug:
+  <<: *build
+  variables:
+    <<: *gcc
+    CONTAINER: debian:unstable-i386
+    debug: y
+    XEN_TARGET_ARCH: x86_32
+
 # Ubuntu Trusty's Clang is 3.4 while Xen requires 3.5
 
 ubuntu-trusty-gcc: