Skip to content

Commit b015721

Browse files
committed
Add 10 seconds in case reporter send a big mail
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
1 parent f4dea54 commit b015721

4 files changed

Lines changed: 5 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.6"
22+
tag: "0.8.7"
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.6" \
5+
RELEASE_UPSTREAM="0.8.7" \
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.6 -f Dockerfile.daily-tests .
10+
podman build -t quay.io/sclorg/upstream-daily-tests:0.8.7 -f Dockerfile.daily-tests .

daily_tests/daily_nightly_tests_report.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ set -x
55
cd /root/ci-scripts/daily_tests
66
CUR_DATE=$(date +%Y-%m-%d)
77

8-
echo "Bash arguments: $@"
9-
# Let's sleep for 10 minutes
10-
env
118
find "/var/ci-scripts/daily_reports_dir/${CUR_DATE}" -type f -name "tmt_*"
129
echo "--------------------"
1310
if [ -n "$1" ]; then
1411
python3 ./daily_nightly_tests_report.py "$1"
1512
else
1613
python3 ./daily_nightly_tests_report.py
1714
fi
15+
# Sleep 10 seconds in case we need to send a bigger mail.
16+
sleep 10

0 commit comments

Comments
 (0)