Add openSUSE Leap 16.0 to the CI

This commit is contained in:
Julio Gonzalez Gil
2025-10-10 00:48:07 +02:00
committed by Andrew Gaul
parent b2e318c5c7
commit f364450dfc
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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"