Skip to content

Commit

Permalink
test: retry mops sources call in playground e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswanson-dfinity committed Sep 26, 2023
1 parent 0249634 commit 4064a3e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/assets/playground_backend/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"defaults": {
"build": {
"output": "build",
"packtool": "mops sources"
"packtool": "./mops-sources"
}
}
}
17 changes: 17 additions & 0 deletions e2e/assets/playground_backend/mops-sources
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

set -e

for i in 0 2 4 8 16 32; do
if [ $i -gt 0 ]; then
echo "retrying in $i seconds" 1>&2
sleep $i
fi

if output=$(mops sources); then
echo "$output"
exit 0
fi
echo "failed with output: $output" 1>&2
done
exit 1

0 comments on commit 4064a3e

Please sign in to comment.