From 7d4e848c915a8ef08d3993e77906dceeeafe2fa5 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 4 Feb 2026 09:32:48 +0100 Subject: [PATCH] Bump version and do not use SCRIPTS at all Signed-off-by: Petr "Stone" Hracek --- .github/workflows/build-and-push.yml | 2 +- Dockerfile.daily-tests | 2 +- Makefile | 2 +- run_nightly_tests.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index f96ecda..101aa2f 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -19,6 +19,6 @@ jobs: registry_username: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_USERNAME }} registry_token: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_TOKEN }} dockerfile: Dockerfile.daily-tests - tag: "0.6.2" + tag: "0.6.3" image_name: "upstream-daily-tests" quay_application_token: ${{ secrets.QUAY_IMAGE_SCLORG_UPDATE_DESC }} diff --git a/Dockerfile.daily-tests b/Dockerfile.daily-tests index 86e6f54..9cb294d 100644 --- a/Dockerfile.daily-tests +++ b/Dockerfile.daily-tests @@ -2,7 +2,7 @@ FROM quay.io/fedora/fedora:42 ENV SHARED_DIR="/var/ci-scripts" \ VERSION="42" \ - RELEASE_UPSTREAM="0.6.2" \ + RELEASE_UPSTREAM="0.6.3" \ UPSTREAM_TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" \ UPSTREAM_TMT_DIR="sclorg-testing-farm" \ HOME="/home/nightly" \ diff --git a/Makefile b/Makefile index a7c99fa..dcc5f13 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ shellcheck: ./run-shellcheck.sh `git ls-files *.sh` build_images: - podman build -t quay.io/sclorg/upstream-daily-tests:0.6.2 -f Dockerfile.daily-tests . + podman build -t quay.io/sclorg/upstream-daily-tests:0.6.3 -f Dockerfile.daily-tests . diff --git a/run_nightly_tests.sh b/run_nightly_tests.sh index 8ca4b8b..31d28b1 100755 --- a/run_nightly_tests.sh +++ b/run_nightly_tests.sh @@ -83,7 +83,7 @@ function get_compose() { } function run_tests() { - ENV_VARIABLES="-e DEBUG=yes -e SCRIPT=$SCRIPT -e OS=$TARGET -e TEST=$TESTS" + ENV_VARIABLES="-e DEBUG=yes -e OS=$TARGET -e TEST=$TESTS" if [[ "$TESTS" != "test-upstream" ]]; then ENV_VARIABLES="$ENV_VARIABLES -e SET_TEST=$SET_TEST" else