feat(github_actions): Simplify timeout calculation
Signed-off-by: Lucas Schwiderski <lucas@lschwiderski.de>
This commit is contained in:
parent
4d83228f00
commit
cfe7da8526
|
@ -134,7 +134,7 @@ echo "awesome_log: $awesome_log"
|
|||
|
||||
wait_until_success() {
|
||||
if (( verbose )); then set +x; fi
|
||||
wait_count=$(echo "${TEST_TIMEOUT} / 0.05" | bc)
|
||||
wait_count=$((${TEST_TIMEOUT} * 20))
|
||||
while true; do
|
||||
set +e
|
||||
eval reply="\$($2)"
|
||||
|
|
Loading…
Reference in New Issue