Skip to content

Commit

Permalink
build-docker.yml: Add sleep for qemu update tests
Browse files Browse the repository at this point in the history
Signed-off-by: thecalcaholic <[email protected]>
  • Loading branch information
theCalcaholic committed Sep 29, 2022
1 parent 997cbc8 commit c5c8730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
docker logs -f nextcloudpi |& awk '{ print "CONTAINER::" $0 }' &
docker exec nextcloudpi bash -c 'tail -f /var/log/ncp.log' |& awk '{ print "NCP::" $0 }' &
cmd=(python activation_tests.py --no-gui localhost 8443 4443)
[[ "${ARCH?}" == "x86" ]] || cmd+=(--timeout 300)
[[ "${ARCH?}" == "x86" ]] || { sleep 30; cmd+=(--timeout 300); }
success=false
for attempt in {1..3}
Expand Down

0 comments on commit c5c8730

Please sign in to comment.