From: Wei Liu Date: Mon, 22 Oct 2018 15:18:51 +0000 (+0100) Subject: automation: build with Ubuntu 18.04 X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3022 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=21b17f9eaad4e7d1b7cf2950e8d113f8c79339ea;p=xen.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