filesystem/.cirrus.yml
Benjamin Bannier 99c3500205 Replace EOL centos CI with rockylinux
centos7 has reached EOL on 2024-06-30, centos8 on 2021-10-31. In
practical terms this means that their package repositories are offline
for the foreseeable future and the CI tasks making use of them might
never run again.

This patch replaces the existing CI jobs on centos7/centos8 with jobs on
rockylinux8/9. Since rockylinux is an open source variant similar to
RHEL this should provide testing with similar spirit. In contrast to
centos, rockylinux does provide very granular tagging of releases which
if used would help avoid breaking on e.g., subtle package changes in
their package repositories. I however did not use very precise tags in
the patch and instead went with broad "trains" for the 8 and 9 series;
I hope this minimizes maintenance overhead (e.g., bumping to new
releases) while still giving a good testing signal.
2024-12-18 15:45:33 +01:00

35 lines
792 B
YAML

freebsd_task:
freebsd_instance:
image_family: freebsd-14-0
install_script: |
pkg install -y cmake
pw groupadd testgrp
pw useradd testuser -g testgrp -w none -m
chown -R testuser:testgrp .
build_script: |
sudo -u testuser .ci/unix-build.sh
test_script: |
sudo -u testuser .ci/unix-test.sh
rockylinux8_task:
container:
image: docker.io/rockylinux:8
install_script: |
dnf group install -y "Development Tools"
dnf install cmake -y
build_script: |
.ci/unix-build.sh
test_script: |
.ci/unix-test.sh
rockylinux9_task:
container:
image: docker.io/rockylinux:9
install_script: |
dnf group install -y "Development Tools"
dnf install cmake -y
build_script: |
.ci/unix-build.sh
test_script: |
.ci/unix-test.sh