diff options
author | Pierre Ossman <ossman@cendio.se> | 2022-12-30 14:11:05 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2022-12-30 14:19:42 +0100 |
commit | eff7fdd81bed6761a29f85b7dfa39f07d3015ea4 (patch) | |
tree | ca6cc18e9c6e543a577a77f3435a8781f16bccb3 | |
parent | 81b80305a21e943e6b188f870d46aa872951b715 (diff) | |
download | tigervnc-eff7fdd81bed6761a29f85b7dfa39f07d3015ea4.tar.gz tigervnc-eff7fdd81bed6761a29f85b7dfa39f07d3015ea4.zip |
Use Rocky Linux for RHEL builds
CentOS Stream isn't fully compatible with RHEL, and there are no useful
RHEL images available, so that leaves us with one of the new RHEL forks.
-rw-r--r-- | .github/containers/rocky8/Dockerfile (renamed from .github/containers/centos8/Dockerfile) | 2 | ||||
-rwxr-xr-x | .github/containers/rocky8/build.sh (renamed from .github/containers/centos8/build.sh) | 0 | ||||
-rw-r--r-- | .github/containers/rocky9/Dockerfile (renamed from .github/containers/centos9/Dockerfile) | 2 | ||||
-rwxr-xr-x | .github/containers/rocky9/build.sh (renamed from .github/containers/centos9/build.sh) | 0 | ||||
-rw-r--r-- | .github/workflows/build.yml | 4 |
5 files changed, 4 insertions, 4 deletions
diff --git a/.github/containers/centos8/Dockerfile b/.github/containers/rocky8/Dockerfile index 2e2ae6fc..d6f57967 100644 --- a/.github/containers/centos8/Dockerfile +++ b/.github/containers/rocky8/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/centos/centos:stream8 +FROM rockylinux:8 RUN dnf -y group install 'Development Tools' RUN dnf -y install sudo diff --git a/.github/containers/centos8/build.sh b/.github/containers/rocky8/build.sh index d56eb62c..d56eb62c 100755 --- a/.github/containers/centos8/build.sh +++ b/.github/containers/rocky8/build.sh diff --git a/.github/containers/centos9/Dockerfile b/.github/containers/rocky9/Dockerfile index 168dfe45..1b254a9d 100644 --- a/.github/containers/centos9/Dockerfile +++ b/.github/containers/rocky9/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/centos/centos:stream9 +FROM rockylinux:9 RUN dnf -y group install 'Development Tools' RUN dnf -y install sudo diff --git a/.github/containers/centos9/build.sh b/.github/containers/rocky9/build.sh index 781889b3..781889b3 100755 --- a/.github/containers/centos9/build.sh +++ b/.github/containers/rocky9/build.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3caa0342..68ecaaa9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -107,8 +107,8 @@ jobs: matrix: target: - centos7 - - centos8 - - centos9 + - rocky8 + - rocky9 - bionic - focal - jammy |