Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/test_distros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions tests/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ case ${DISTRO} in
"procps-ng"
"psmisc"
"iproute"
"util-linux"
)
dnf install --assumeyes ${packages[@]} || exit $?
;;
Expand Down
5 changes: 5 additions & 0 deletions tests/run_recap.sh
Original file line number Diff line number Diff line change
@@ -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)

Expand Down