On 11/05/2021 15.26, Daniel P. Berrangé wrote:
It has been over two years since RHEL-8 was released, and thus per the
platform build policy, we no longer need to support RHEL-7 as a build
target.
Signed-off-by: Daniel P. Berrangé <berra...@redhat.com>
---
.gitlab-ci.yml | 6 +++---
tests/docker/dockerfiles/centos8.docker | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dcb6317aac..23917d6d73 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -441,12 +441,12 @@ build-user-plugins:
MAKE_CHECK_ARGS: check-tcg
timeout: 1h 30m
-build-user-centos7:
+build-user-centos8:
<<: *native_build_job_definition
needs:
- job: amd64-centos7-container
+ job: amd64-centos8-container
variables:
- IMAGE: centos7
+ IMAGE: centos8
We urgently should decrease our huge amount of jobs ... What about removing
this job completely? We already have the "build-user" job that tests the
compilation on Debian, which is likely at a similar library level as
centos8, so I doubt that we get much additional test coverage from this job
here when it's running on Centos 8.
Thomas