tools/fedora-worker-packer: increase timeouts further
The first timeout increase didn't take effect. And once the suite is present the rpm builds can stay pending for a very long time.
This commit is contained in:
parent
c9ce5af655
commit
aadf5dfc9a
1 changed files with 4 additions and 4 deletions
|
|
@ -14,7 +14,7 @@ COMMIT_SHA="${COMMIT_SHA:-$(git rev-parse HEAD)}"
|
|||
|
||||
# wait up to 30 minutes for the packit-as-a-service app (app id being 29076)
|
||||
for RETRY in {1..31}; do
|
||||
if [ "$RETRY" = 11 ]; then
|
||||
if [ "$RETRY" = 31 ]; then
|
||||
echo Waiting for the packit-as-a-service suite failed after 10 minutes
|
||||
exit 1
|
||||
fi
|
||||
|
|
@ -37,9 +37,9 @@ if [ "$CHECK_RUNS_URL" = null ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# wait up to 30 minutes for the rpms to be built
|
||||
for RETRY in {1..31}; do
|
||||
if [ "$RETRY" = 31 ]; then
|
||||
# wait up to 2 hours for the rpms to be built
|
||||
for RETRY in {1..121}; do
|
||||
if [ "$RETRY" = 121 ]; then
|
||||
echo Waiting for the packit-as-a-service results failed after 30 minutes
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue