[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [RFC PATCH 5/6] ci: add cfg to use GitLab CI to build
Added a GitLab CI config which has a lot more flexibility to allow us to test a lot more distro configurations than Travis can and even build test on FreeBSD. Signed-off-by: Doug Goldstein <cardoe@xxxxxxxxxx> --- .gitlab-ci.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ccc2237 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,34 @@ +stages: + - build + +centos-7-2: + stage: build + image: registry.gitlab.com/cardoe/xen/centos:7.2 + variables: + CC: gcc + script: + - ./scripts/travis-build + +debian-jessie: + stage: build + image: registry.gitlab.com/cardoe/xen/debian:jessie + variables: + CC: gcc + script: + - ./scripts/travis-build + +ubuntu-trusty: + stage: build + image: registry.gitlab.com/cardoe/xen/ubuntu:trusty + variables: + CC: gcc + script: + - ./scripts/travis-build + +ubuntu-xenial: + stage: build + image: registry.gitlab.com/cardoe/xen/ubuntu:xenial + variables: + CC: gcc + script: + - ./scripts/travis-build -- git-series 0.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |