Skip to content

Commit 5649c7b

Browse files
committed
Increase timeout to 240 min and swap to 6GB
With 4GB swap, STA thrashes and P&R exceeded the 120-min timeout. Increase swap to 6GB (compromise between disk space and RAM) and bump timeout to 240 min to accommodate the slower STA phase. Co-developed-by: Claude Code v2.1.44 (claude-opus-4-6)
1 parent b0f88c3 commit 5649c7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/mcu-soc-rebuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
rebuild:
2020
name: Rebuild MCU SoC Test Data
2121
runs-on: ubuntu-latest
22-
timeout-minutes: 180
22+
timeout-minutes: 240
2323
steps:
2424
- name: Free disk space
2525
run: |
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
sudo swapoff /swapfile 2>/dev/null || true
3333
sudo rm -f /swapfile
34-
sudo fallocate -l 8G /swapfile
34+
sudo fallocate -l 6G /swapfile
3535
sudo chmod 600 /swapfile
3636
sudo mkswap /swapfile
3737
sudo swapon /swapfile

0 commit comments

Comments
 (0)