Skip to content
Merged
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: 3 additions & 3 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:37', 'fedora:39', 'centos:10']
images: ['fedora:39', 'fedora:42', 'centos:10']
fail-fast: false

steps:
Expand All @@ -34,14 +34,14 @@ jobs:
run: |
echo 'QEMU_PACKAGE=' > bootstrap
echo 'QEMU_GIT=https://github.com/qemu/qemu.git' >> bootstrap
echo 'QEMU_REF=v9.0.0' >> bootstrap
echo 'QEMU_REF=v10.1.0' >> bootstrap


- name: Disable VIRTIOFSD_PACKAGE
run: |
echo 'VIRTIOFSD_PACKAGE=' >> bootstrap
echo 'VIRTIOFSD_GIT=https://gitlab.com/virtio-fs/virtiofsd.git' >> bootstrap
echo 'VIRTIOFSD_REF=v1.11.0' >> bootstrap
echo 'VIRTIOFSD_REF=v1.13.0' >> bootstrap

- name: Run
run: bash tests/test.sh ${{ matrix.images }}
4 changes: 2 additions & 2 deletions autohck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ install_ruby() {
fedora)
case "$( get_distribution_variant )" in
silverblue)
rpm-ostree install -A --allow-inactive --idempotent tar openssl openssl-devel curl curl-devel
rpm-ostree install -A --allow-inactive --idempotent tar openssl openssl-devel curl curl-devel gcc libyaml-devel
;;
*)
sudo dnf makecache
sudo dnf -y install tar openssl openssl-devel curl curl-devel
sudo dnf -y install tar openssl openssl-devel curl curl-devel gcc libyaml-devel
;;
esac
;;
Expand Down
2 changes: 1 addition & 1 deletion dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ HCK_FILTERS_REF=e09e456eb4d8e9819472ee8798497a110f986af3
# HCK_FILTERS_DIR=

AUTOHCK_GIT=https://github.com/HCK-CI/AutoHCK.git
AUTOHCK_REF=v0.17.3
AUTOHCK_REF=v0.17.4
# AUTOHCK_DIR=
2 changes: 1 addition & 1 deletion tests/create_run_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ case "${test_dist}" in
log_fatal "Distributive '$lsb_dist/$test_dist_variant' is unsupported for test run."
;;
*)
echo dnf makecache
echo dnf makecache >> "${test_script}"
echo dnf install -y git jq which procps >> "${test_script}"
Comment thread
kostyanf14 marked this conversation as resolved.
;;
esac
Expand Down
1 change: 1 addition & 0 deletions tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ test_image_list[centos:10]=quay.io/centos/centos:stream10
test_image_list[fedora:34]=fedora:34
test_image_list[fedora:37]=fedora:37
test_image_list[fedora:39]=fedora:39
test_image_list[fedora:42]=fedora:42
Comment thread
kostyanf14 marked this conversation as resolved.
test_image_list[ubuntu:20]=ubuntu:20.04
test_image_list[ubuntu:22]=ubuntu:22.04

Expand Down