From: Wei Liu Date: Mon, 22 Oct 2018 15:18:51 +0000 (+0100) Subject: automation: build with Ubuntu 18.04 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=21b17f9eaad4e7d1b7cf2950e8d113f8c79339ea;p=people%2Fsstabellini%2Fxen-unstable.git%2F.git automation: build with Ubuntu 18.04 Signed-off-by: Wei Liu Acked-by: Andrew Cooper --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bf6bf7d895..96d7e7f759 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -269,3 +269,35 @@ ubuntu-xenial-gcc-debug: CONTAINER: ubuntu:xenial debug: y XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-clang: + <<: *build + variables: + <<: *clang + CONTAINER: ubuntu:bionic + debug: n + XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-clang-debug: + <<: *build + variables: + <<: *clang + CONTAINER: ubuntu:bionic + debug: y + XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-gcc: + <<: *build + variables: + <<: *gcc + CONTAINER: ubuntu:bionic + debug: n + XEN_TARGET_ARCH: x86_64 + +ubuntu-bionic-gcc-debug: + <<: *build + variables: + <<: *gcc + CONTAINER: ubuntu:bionic + debug: y + XEN_TARGET_ARCH: x86_64