Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
integration:
name: Integration (unit + e2e + build)
runs-on: ubuntu-latest
timeout-minutes: 90
timeout-minutes: 180
needs: [meta]
outputs:
version: ${{ needs.meta.outputs.version }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
pid=$!
echo "E2E pid=$pid"

for i in $(seq 1 2700); do
for i in $(seq 1 7200); do
if ! kill -0 "$pid" 2>/dev/null; then
echo "E2E finished, waiting..."
wait "$pid"
Expand All @@ -149,14 +149,14 @@ jobs:
sleep 1
done

echo "ERROR: E2E exceeded watchdog (45m) - killing..."
echo "ERROR: E2E exceeded watchdog (120m) - killing..."
kill "$pid" || true
sleep 2
kill -9 "$pid" || true
exit 1


echo "ERROR: E2E exceeded watchdog (45m) - killing..."
echo "ERROR: E2E exceeded watchdog (120m) - killing..."
kill "$pid" || true
sleep 2
kill -9 "$pid" || true
Expand Down
Loading