Update tests
This commit is contained in:
parent
9088681e89
commit
0fe30b0479
13
.github/workflows/test_set_1.yml
vendored
13
.github/workflows/test_set_1.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
if: github.repository_owner == 'hwdsl2'
|
if: github.repository_owner == 'hwdsl2'
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os_version: ["centos:8s", "centos:7", "rockylinux:9", "rockylinux:8", "almalinux:9", "almalinux:8", "amazonlinux:2", "oraclelinux:9", "oraclelinux:8", "oraclelinux:7"]
|
os_version: ["centos:9s", "centos:8s", "centos:7", "rockylinux:9", "rockylinux:8", "almalinux:9", "almalinux:8", "amazonlinux:2", "oraclelinux:9", "oraclelinux:8", "oraclelinux:7"]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
OS_VERSION: ${{ matrix.os_version }}
|
OS_VERSION: ${{ matrix.os_version }}
|
||||||
@ -535,7 +535,9 @@ jobs:
|
|||||||
exit 0
|
exit 0
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [ "$OS_VERSION" = "centos:8s" ]; then
|
if [ "$OS_VERSION" = "centos:9s" ]; then
|
||||||
|
echo "FROM quay.io/centos/centos:stream9" > Dockerfile
|
||||||
|
elif [ "$OS_VERSION" = "centos:8s" ]; then
|
||||||
echo "FROM quay.io/centos/centos:stream8" > Dockerfile
|
echo "FROM quay.io/centos/centos:stream8" > Dockerfile
|
||||||
else
|
else
|
||||||
echo "FROM $OS_VERSION" > Dockerfile
|
echo "FROM $OS_VERSION" > Dockerfile
|
||||||
@ -547,6 +549,13 @@ jobs:
|
|||||||
WORKDIR /opt/src
|
WORKDIR /opt/src
|
||||||
|
|
||||||
RUN if command -v amazon-linux-extras; then amazon-linux-extras install -y kernel-ng; fi
|
RUN if command -v amazon-linux-extras; then amazon-linux-extras install -y kernel-ng; fi
|
||||||
|
EOF
|
||||||
|
|
||||||
|
if [ "$OS_VERSION" = "centos:9s" ]; then
|
||||||
|
echo "RUN yum -y -q install systemd" >> Dockerfile
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat >> Dockerfile <<'EOF'
|
||||||
|
|
||||||
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ "$i" = \
|
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ "$i" = \
|
||||||
systemd-tmpfiles-setup.service ] || rm -f "$i"; done); \
|
systemd-tmpfiles-setup.service ] || rm -f "$i"; done); \
|
||||||
|
Loading…
Reference in New Issue
Block a user