From be1a3ffa0eedbe346557b4a95a1efebd9114fb2f Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 11 Jul 2019 11:53:37 +0200 Subject: [PATCH] gitlab-ci: add manual build step to test on ubuntu:rolling and ubuntu:devel Rolling is the latest release (regardless of whether LTS), currently that would be 19.04. Devel is the next release, currently that would be 19.10. Add manual build steps to trigger those builds so we can manually verify that they pass. (cherry picked from commit 13b4cad989bab035c5f1cbb3edc9f05d2b692b4f) --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index baf6767352..908d5f04de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -127,6 +127,18 @@ t_ubuntu:18.04: image: ubuntu:18.04 <<: *do_build +t_ubuntu:rolling: + <<: *debian_install + image: ubuntu:rolling + <<: *do_build + when: manual + +t_ubuntu:devel: + <<: *debian_install + image: ubuntu:devel + <<: *do_build + when: manual + t_debian:9: <<: *debian_install image: debian:stretch