From 2955d5e69a643caaa24dd7efc2237a0bdcc4fd32 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 9 Apr 2019 17:48:35 +0200 Subject: [PATCH] gitlab-ci: add test on Fedora 30 image And no longer use "fedora:lastest". While "fedora:rawhide" names the very latest branch (and we want to test that), for all proper releases we want name them explicitly. --- .gitlab-ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 887ac2db4..8b96f910d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -50,12 +50,17 @@ build_f28: paths: - docs-html -build_f_latest: +build_f29: <<: *fedora_install - image: fedora:latest + image: fedora:29 <<: *fedora_script -build_f_rawhide: +build_f30: + <<: *fedora_install + image: fedora:30 + <<: *fedora_script + +build_frawhide: <<: *fedora_install image: fedora:rawhide <<: *fedora_script