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
4 changes: 2 additions & 2 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:39', 'fedora:42', 'centos:10']
images: ['fedora:41', 'fedora:43', 'centos:10']
fail-fast: false

steps:
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:39', 'ubuntu:22', 'centos:9']
images: ['fedora:41', 'ubuntu:24', 'centos:9']
fail-fast: false

steps:
Expand Down
10 changes: 5 additions & 5 deletions dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ VIRTIOFSD_PACKAGE=TRUE
QEMU_PACKAGE=TRUE

HLK_SETUP_SCRIPTS_GIT=https://github.com/HCK-CI/HLK-Setup-Scripts.git
HLK_SETUP_SCRIPTS_REF=9c239aa6294075ee513133c675cb4e5fe3f4d426
HLK_SETUP_SCRIPTS_REF=61582b3b9cadd5199462c9866974a81112252e23
# HLK_SETUP_SCRIPTS_DIR=

EXTRA_SOFTWARE_GIT=https://github.com/HCK-CI/extra-software.git
EXTRA_SOFTWARE_REF=2f0c255cdc829446befb169066a4e3408ef392ef
EXTRA_SOFTWARE_REF=43c6a3b215d9f4b33227627b4644459879f53deb
# EXTRA_SOFTWARE_DIR=

HLK_PLAYLISTS_GIT=https://github.com/HCK-CI/hlkplaylists.git
HLK_PLAYLISTS_REF=d2ee05022de73ba2c346df7b00a51451d6728231
HLK_PLAYLISTS_REF=099a437601322e7f54b57be5e3e1370fd5e357dc
# HLK_PLAYLISTS_DIR=

HCK_FILTERS_GIT=https://github.com/HCK-CI/hckfilters.git
HCK_FILTERS_REF=e09e456eb4d8e9819472ee8798497a110f986af3
HCK_FILTERS_REF=6d56fb362c483fc4ca65c93b5e2901c0e9ed569a
# HCK_FILTERS_DIR=

AUTOHCK_GIT=https://github.com/HCK-CI/AutoHCK.git
AUTOHCK_REF=v0.17.4
AUTOHCK_REF=v0.17.5
# AUTOHCK_DIR=
8 changes: 3 additions & 5 deletions tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ image_to_run="${1}"
declare -A test_image_list test_dist_list
test_image_list[centos:9]=quay.io/centos/centos:stream9
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:41]=fedora:41
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
test_image_list[fedora:43]=fedora:43
test_image_list[ubuntu:24]=ubuntu:24.04

tee() { if test "$1" != "${1%/*}"; then mkdir -p ${1%/*}; fi &&
command tee -a "$1"; }
Expand Down