From 974c71017c444c54936052b61325b5820c52b5b3 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Mon, 23 Feb 2026 14:12:47 +0100 Subject: [PATCH] Fix calling report with parameter Signed-off-by: Petr "Stone" Hracek --- .github/workflows/build-and-push.yml | 2 +- Dockerfile.daily-tests | 2 +- Makefile | 2 +- daily_tests/daily_nightly_tests_report.sh | 6 +++++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index 68be123..71aedbd 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.8.1" + tag: "0.8.2" 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 a5a87da..51a0bdd 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.8.1" \ + RELEASE_UPSTREAM="0.8.2" \ 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 b2dc525..5512cd0 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.8.1 -f Dockerfile.daily-tests . + podman build -t quay.io/sclorg/upstream-daily-tests:0.8.2 -f Dockerfile.daily-tests . diff --git a/daily_tests/daily_nightly_tests_report.sh b/daily_tests/daily_nightly_tests_report.sh index 9ed84bf..662fcab 100755 --- a/daily_tests/daily_nightly_tests_report.sh +++ b/daily_tests/daily_nightly_tests_report.sh @@ -10,4 +10,8 @@ echo "Bash arguments: $@" env find "/var/ci-scripts/daily_reports_dir/${CUR_DATE}" -type f -name "tmt_*" echo "--------------------" -python3 ./daily_nightly_tests_report.py "$1" +if [ -n "$1" ]; then + python3 ./daily_nightly_tests_report.py "$1" +else + python3 ./daily_nightly_tests_report.py +fi