Update tests
This commit is contained in:
parent
7fa6df6105
commit
c9e3bff6e2
10
.github/workflows/cron.yml
vendored
10
.github/workflows/cron.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
||||
if: github.repository_owner == 'hwdsl2'
|
||||
strategy:
|
||||
matrix:
|
||||
os_version: ["centos:8", "centos:7", "amazonlinux:2", "ubuntu:16.04"]
|
||||
os_version: ["centos:8", "centos:8s", "centos:7", "amazonlinux:2"]
|
||||
fail-fast: false
|
||||
env:
|
||||
OS_VERSION: ${{ matrix.os_version }}
|
||||
@ -373,9 +373,11 @@ jobs:
|
||||
exit 0
|
||||
EOF
|
||||
|
||||
cat > Dockerfile <<EOF
|
||||
FROM $OS_VERSION
|
||||
EOF
|
||||
if [ "$OS_VERSION" = "centos:8s" ]; then
|
||||
echo "FROM quay.io/centos/centos:stream8" > Dockerfile
|
||||
else
|
||||
echo "FROM $OS_VERSION" > Dockerfile
|
||||
fi
|
||||
|
||||
cat >> Dockerfile <<'EOF'
|
||||
|
||||
|
10
.github/workflows/main.yml
vendored
10
.github/workflows/main.yml
vendored
@ -48,7 +48,7 @@ jobs:
|
||||
if: github.repository_owner == 'hwdsl2'
|
||||
strategy:
|
||||
matrix:
|
||||
os_version: ["centos:8", "centos:7", "amazonlinux:2", "ubuntu:16.04"]
|
||||
os_version: ["centos:8", "centos:8s", "centos:7", "amazonlinux:2"]
|
||||
fail-fast: false
|
||||
env:
|
||||
OS_VERSION: ${{ matrix.os_version }}
|
||||
@ -405,9 +405,11 @@ jobs:
|
||||
exit 0
|
||||
EOF
|
||||
|
||||
cat > Dockerfile <<EOF
|
||||
FROM $OS_VERSION
|
||||
EOF
|
||||
if [ "$OS_VERSION" = "centos:8s" ]; then
|
||||
echo "FROM quay.io/centos/centos:stream8" > Dockerfile
|
||||
else
|
||||
echo "FROM $OS_VERSION" > Dockerfile
|
||||
fi
|
||||
|
||||
cat >> Dockerfile <<'EOF'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user