From 5ae32f7b838b99bfb111ce9d9c13ffc160ff2d6c Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Wed, 25 Mar 2020 11:22:42 +0200 Subject: Hardwire the Fedora version used for CI CI has been running on latest stable Fedora and rawhide, both of which can and do change outside our control and cause previously working code to stop building overnight due to new compiler versions etc being introduced. This is not a sane situation for mandatory CI, we need to be able to validate the codebase on a given version *before* moving to it. Setting the version in the Dockerfile instead of external scripts ties the codebase and validated versions together as they should. This still leaves us subject to updates breaking stuff, but that's a lesser evil, updates are generally welcome. (cherry picked from commit 9a7e8e15705e81661f58374fdd83ac5ce425d99b) --- ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 7d6a7551c..c2ed141fe 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM fedora +FROM fedora:31 MAINTAINER rpm-maint@lists.rpm.org WORKDIR /opt/rpm -- cgit v1.2.1