Skip to content

Commit d403ed0

Browse files
authored
Code Builder in Permutation Testing (#1574)
1 parent af092cd commit d403ed0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/permutation-testing.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ on:
66
- cron: '0 20 * * 2'
77
workflow_dispatch: # Allow manual triggering
88

9-
concurrency:
10-
group: 'permutation-testing'
11-
cancel-in-progress: true
12-
139
permissions:
1410
contents: read
1511

1612
jobs:
1713
permutation-test:
1814
name: Run Permutation Tests
19-
runs-on: ubuntu-latest
15+
# Uses AWS CodeBuild managed runners for higher memory capacity (64GB)
16+
# The permutation tests are memory-intensive and require more resources than standard GitHub runners
17+
runs-on:
18+
- codebuild-ThorGHA-${{ github.run_id }}-${{ github.run_attempt }}
19+
- image:arm-3.0
20+
- instance-size:xlarge # 32 vCPUs, 64 GiB memory
2021
timeout-minutes: 240 # 4 hours
2122
steps:
2223
- name: Checkout code

0 commit comments

Comments
 (0)