Add openSUSE Leap 16.0 to the CI
This commit is contained in:
committed by
Andrew Gaul
parent
b2e318c5c7
commit
f364450dfc
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@ -61,6 +61,7 @@ jobs:
|
||||
- fedora:42
|
||||
- fedora:41
|
||||
- opensuse/leap:15
|
||||
- opensuse/leap:16.0
|
||||
- alpine:3.22
|
||||
|
||||
container:
|
||||
@ -78,7 +79,7 @@ jobs:
|
||||
# On openSUSE, tar and gzip must be installed before action/checkout.
|
||||
#
|
||||
- name: Install openSUSE packages before checkout
|
||||
if: matrix.container == 'opensuse/leap:15'
|
||||
if: matrix.container == 'opensuse/leap:15' || matrix.container == 'opensuse/leap:16.0'
|
||||
run: zypper install -y tar gzip
|
||||
|
||||
- name: Install Alpine packages before checkout
|
||||
|
||||
3
.github/workflows/linux-ci-helper.sh
vendored
3
.github/workflows/linux-ci-helper.sh
vendored
@ -293,7 +293,8 @@ elif [ "${CONTAINER_FULLNAME}" = "fedora:42" ] ||
|
||||
procps
|
||||
)
|
||||
|
||||
elif [ "${CONTAINER_FULLNAME}" = "opensuse/leap:15" ]; then
|
||||
elif [ "${CONTAINER_FULLNAME}" = "opensuse/leap:15" ] ||
|
||||
[ "${CONTAINER_FULLNAME}" = "opensuse/leap:16.0" ]; then
|
||||
PACKAGE_MANAGER_BIN="zypper"
|
||||
PACKAGE_UPDATE_OPTIONS="refresh"
|
||||
PACKAGE_INSTALL_OPTIONS="install -y"
|
||||
|
||||
Reference in New Issue
Block a user