diff --git a/.github/workflows/test_distros.yml b/.github/workflows/test_distros.yml index 8f61aea..f24f6ce 100644 --- a/.github/workflows/test_distros.yml +++ b/.github/workflows/test_distros.yml @@ -13,14 +13,16 @@ jobs: fail-fast: false matrix: include: - - name: "centos_8" - registry: quay.io/centos/centos:stream8 + - name: "centos_10" + registry: quay.io/centos/centos:stream10 - name: "centos_9" registry: quay.io/centos/centos:stream9 - name: "ubuntu_22.04" registry: mirror.gcr.io/library/ubuntu:22.04 - name: "ubuntu_20.04" registry: mirror.gcr.io/library/ubuntu:20.04 + - name: "debian_12" + registry: mirror.gcr.io/library/debian:bookworm - name: "debian_11" registry: mirror.gcr.io/library/debian:bullseye - name: "fedora_latest" diff --git a/tests/install_deps.sh b/tests/install_deps.sh index 64581d7..659e09a 100755 --- a/tests/install_deps.sh +++ b/tests/install_deps.sh @@ -16,6 +16,7 @@ case ${DISTRO} in "procps-ng" "psmisc" "iproute" + "util-linux" ) dnf install --assumeyes ${packages[@]} || exit $? ;; diff --git a/tests/run_recap.sh b/tests/run_recap.sh index 6bb7f28..606883d 100755 --- a/tests/run_recap.sh +++ b/tests/run_recap.sh @@ -1,5 +1,10 @@ #!/bin/bash +# Create missing lock dir in container +if [[ ! -e "/var/lock" ]]; then + mkdir $(readlink -f /var/lock) +fi + # Get full path to recap recap_path=$(type -p recap)