Update Alpine Linux versions
Add Alpine Linux 3.19
This commit is contained in:
parent
b7b3fc3169
commit
4aa7c47c39
6 changed files with 11 additions and 11 deletions
2
.github/workflows/test_set_2.yml
vendored
2
.github/workflows/test_set_2.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
|||
if: github.repository_owner == 'hwdsl2'
|
||||
strategy:
|
||||
matrix:
|
||||
os_version: ["ubuntu:22.04", "ubuntu:20.04", "ubuntu:18.04", "debian:12", "debian:11", "debian:10", "alpine:3.17", "alpine:3.18"]
|
||||
os_version: ["ubuntu:22.04", "ubuntu:20.04", "ubuntu:18.04", "debian:12", "debian:11", "debian:10", "alpine:3.17", "alpine:3.18", "alpine:3.19"]
|
||||
fail-fast: false
|
||||
container:
|
||||
image: ${{ matrix.os_version }}
|
||||
|
|
|
@ -96,8 +96,8 @@ EOF
|
|||
esac
|
||||
if [ "$os_type" = "alpine" ]; then
|
||||
os_ver=$(. /etc/os-release && printf '%s' "$VERSION_ID" | cut -d '.' -f 1,2)
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18."
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ] && [ "$os_ver" != "3.19" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18/3.19."
|
||||
fi
|
||||
else
|
||||
os_ver=$(sed 's/\..*//' /etc/debian_version | tr -dc 'A-Za-z0-9')
|
||||
|
|
|
@ -90,8 +90,8 @@ EOF
|
|||
esac
|
||||
if [ "$os_type" = "alpine" ]; then
|
||||
os_ver=$(. /etc/os-release && printf '%s' "$VERSION_ID" | cut -d '.' -f 1,2)
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18."
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ] && [ "$os_ver" != "3.19" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18/3.19."
|
||||
fi
|
||||
else
|
||||
os_ver=$(sed 's/\..*//' /etc/debian_version | tr -dc 'A-Za-z0-9')
|
||||
|
|
|
@ -51,8 +51,8 @@ check_os() {
|
|||
;;
|
||||
esac
|
||||
os_ver=$(. /etc/os-release && printf '%s' "$VERSION_ID" | cut -d '.' -f 1,2)
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18."
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ] && [ "$os_ver" != "3.19" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18/3.19."
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -122,8 +122,8 @@ EOF
|
|||
esac
|
||||
if [ "$os_type" = "alpine" ]; then
|
||||
os_ver=$(. /etc/os-release && printf '%s' "$VERSION_ID" | cut -d '.' -f 1,2)
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18."
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ] && [ "$os_ver" != "3.19" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18/3.19."
|
||||
fi
|
||||
else
|
||||
os_ver=$(sed 's/\..*//' /etc/debian_version | tr -dc 'A-Za-z0-9')
|
||||
|
|
|
@ -70,8 +70,8 @@ check_os() {
|
|||
;;
|
||||
esac
|
||||
os_ver=$(. /etc/os-release && printf '%s' "$VERSION_ID" | cut -d '.' -f 1,2)
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18."
|
||||
if [ "$os_ver" != "3.17" ] && [ "$os_ver" != "3.18" ] && [ "$os_ver" != "3.19" ]; then
|
||||
exiterr "This script only supports Alpine Linux 3.17/3.18/3.19."
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue