diff options
author | Thomas Huth <thuth@redhat.com> | 2024-04-18 12:10:47 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-04-25 07:03:04 +0200 |
commit | 641b1efe01b2dd6e7ac92f23d392dcee73508746 (patch) | |
tree | 6a3f97d2f1f387dd69fd815a5b3522e64d35c244 /tests/vm | |
parent | 2355d18c79e05c2b790113c95c5ccfee35fb7fcf (diff) | |
download | qemu-641b1efe01b2dd6e7ac92f23d392dcee73508746.zip qemu-641b1efe01b2dd6e7ac92f23d392dcee73508746.tar.gz qemu-641b1efe01b2dd6e7ac92f23d392dcee73508746.tar.bz2 |
tests: Update our CI to use CentOS Stream 9 instead of 8
RHEL 9 (and thus also the derivatives) have been available since two
years now, so according to QEMU's support policy, we can drop the active
support for the previous major version 8 now.
Another reason for doing this is that Centos Stream 8 will go EOL soon:
https://blog.centos.org/2023/04/end-dates-are-coming-for-centos-stream-8-and-centos-linux-7/
"After May 31, 2024, CentOS Stream 8 will be archived
and no further updates will be provided."
Thus upgrade our CentOS Stream container to major version 9 now.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20240418101056.302103-5-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/vm')
-rwxr-xr-x | tests/vm/centos | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/centos b/tests/vm/centos index 097a9ca..d25c8f8 100755 --- a/tests/vm/centos +++ b/tests/vm/centos @@ -26,8 +26,8 @@ class CentosVM(basevm.BaseVM): export SRC_ARCHIVE=/dev/vdb; sudo chmod a+r $SRC_ARCHIVE; tar -xf $SRC_ARCHIVE; - make docker-test-block@centos8 {verbose} J={jobs} NETWORK=1; - make docker-test-quick@centos8 {verbose} J={jobs} NETWORK=1; + make docker-test-block@centos9 {verbose} J={jobs} NETWORK=1; + make docker-test-quick@centos9 {verbose} J={jobs} NETWORK=1; """ def build_image(self, img): |