Skip to content

Commit 353dfb2

Browse files
committed
Fix paths
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
1 parent 4f80e99 commit 353dfb2

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
registry_username: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_USERNAME }}
2020
registry_token: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_TOKEN }}
2121
dockerfile: Dockerfile.daily-tests
22-
tag: "0.8.10"
22+
tag: "0.8.11"
2323
image_name: "upstream-daily-tests"
2424
quay_application_token: ${{ secrets.QUAY_IMAGE_SCLORG_UPDATE_DESC }}

Dockerfile.daily-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM quay.io/fedora/fedora:42
22

33
ENV SHARED_DIR="/var/ci-scripts" \
44
VERSION="42" \
5-
RELEASE_UPSTREAM="0.8.10" \
5+
RELEASE_UPSTREAM="0.8.11" \
66
UPSTREAM_TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" \
77
UPSTREAM_TMT_DIR="sclorg-testing-farm" \
88
HOME="/home/nightly" \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ shellcheck:
77
./run-shellcheck.sh `git ls-files *.sh`
88

99
build_images:
10-
podman build -t quay.io/sclorg/upstream-daily-tests:0.8.10 -f Dockerfile.daily-tests .
10+
podman build -t quay.io/sclorg/upstream-daily-tests:0.8.11 -f Dockerfile.daily-tests .

daily-tests/daily_tests/daily_nightly_tests_report.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ CUR_DATE=$(date +%Y-%m-%d)
88
find "/var/ci-scripts/daily_reports_dir/${CUR_DATE}" -type f -name "tmt_*"
99
echo "--------------------"
1010
if [ -n "$1" ]; then
11-
python3 ./daily_nightly_tests_report.py "$1"
11+
python3 ./daily_tests/daily_nightly_tests_report.py "$1"
1212
else
13-
python3 ./daily_nightly_tests_report.py
13+
python3 ./daily_tests/daily_nightly_tests_report.py
1414
fi
1515
# Sleep 10 seconds in case we need to send a bigger mail.
1616
sleep 10

daily-tests/daily_tests/show_logs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ while true; do
1111
echo "Displaying log files every 10 minutes..."
1212
date
1313
find "${SHARED_DIR}/${CUR_DATE}" -type f -name "tmt_*"
14-
python3 ./show_logs.py
14+
python3 ./daily_tests/show_logs.py
1515
# Let's sleep for 10 minutes
1616
sleep 600
1717
done

0 commit comments

Comments
 (0)