From 7903888280ff744bfeb7577e38be04324b544017 Mon Sep 17 00:00:00 2001 From: Tony Garcia Date: Sun, 25 Feb 2024 13:42:40 -0600 Subject: [PATCH 1/4] Add Debian 12 in testing distros --- .github/workflows/test_distros.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test_distros.yml b/.github/workflows/test_distros.yml index 8f61aea..6d29ed6 100644 --- a/.github/workflows/test_distros.yml +++ b/.github/workflows/test_distros.yml @@ -21,6 +21,8 @@ jobs: 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" From f6354b1eb798a7116766dab118f199d269e307e2 Mon Sep 17 00:00:00 2001 From: Tony Garcia Date: Tue, 27 Feb 2024 16:22:06 -0600 Subject: [PATCH 2/4] Add dependency for getopt in fedora --- tests/install_deps.sh | 1 + 1 file changed, 1 insertion(+) 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 $? ;; From 196b9891b5f35ddd5496a114d6573abe60b283b4 Mon Sep 17 00:00:00 2001 From: Tony Garcia Date: Tue, 27 Feb 2024 16:52:02 -0600 Subject: [PATCH 3/4] Fix missing dir in container --- tests/run_recap.sh | 5 +++++ 1 file changed, 5 insertions(+) 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) From 8a3dbe0a0123e543c0f6d3fc4a086fb3ef0c34e1 Mon Sep 17 00:00:00 2001 From: Tony Garcia Date: Sun, 1 Dec 2024 13:12:10 -0600 Subject: [PATCH 4/4] Deprecate el8 --- .github/workflows/test_distros.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_distros.yml b/.github/workflows/test_distros.yml index 6d29ed6..f24f6ce 100644 --- a/.github/workflows/test_distros.yml +++ b/.github/workflows/test_distros.yml @@ -13,8 +13,8 @@ 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"