* External retry * Trigger CI * More external attemps, less internal retries * Trigger CI * Trigger CI * Clean up for PR * Add --retries=2 to cargo test
66 lines
2.4 KiB
Bash
Executable File
66 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# bash strict mode
|
|
set -euo pipefail
|
|
|
|
if [[ ! -f "test-results/.last-run.json" ]]; then
|
|
# if no last run artifact, than run plawright normally
|
|
echo "run playwright normally"
|
|
if [[ "$3" == *ubuntu* ]]; then
|
|
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test:playwright:electron:ubuntu -- --shard=$1/$2 || true
|
|
elif [[ "$3" == *windows* ]]; then
|
|
yarn test:playwright:electron:windows -- --shard=$1/$2 || true
|
|
elif [[ "$3" == *macos* ]]; then
|
|
yarn test:playwright:electron:macos -- --shard=$1/$2 || true
|
|
else
|
|
echo "Do not run playwright. Unable to detect os runtime."
|
|
exit 1
|
|
fi
|
|
# # send to axiom
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
fi
|
|
|
|
retry=1
|
|
max_retrys=1
|
|
|
|
# retry failed tests, doing our own retries because using inbuilt playwright retries causes connection issues
|
|
while [[ $retry -le $max_retrys ]]; do
|
|
if [[ -f "test-results/.last-run.json" ]]; then
|
|
failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
if [[ $failed_tests -gt 0 ]]; then
|
|
echo "retried=true" >>$GITHUB_OUTPUT
|
|
echo "run playwright with last failed tests and retry $retry"
|
|
if [[ "$3" == *ubuntu* ]]; then
|
|
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn test:playwright:electron:ubuntu -- --last-failed || true
|
|
elif [[ "$3" == *windows* ]]; then
|
|
yarn test:playwright:electron:windows -- --last-failed || true
|
|
elif [[ "$3" == *macos* ]]; then
|
|
yarn test:playwright:electron:macos -- --last-failed || true
|
|
else
|
|
echo "Do not run playwright. Unable to detect os runtime."
|
|
exit 1
|
|
fi
|
|
# send to axiom
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
retry=$((retry + 1))
|
|
else
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
exit 0
|
|
fi
|
|
else
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
if [[ -f "test-results/.last-run.json" ]]; then
|
|
failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
if [[ $failed_tests -gt 0 ]]; then
|
|
# if it still fails after 3 retrys, then fail the job
|
|
exit 1
|
|
fi
|
|
fi
|
|
exit 0
|