We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af092cd commit d403ed0Copy full SHA for d403ed0
.github/workflows/permutation-testing.yaml
@@ -6,17 +6,18 @@ on:
6
- cron: '0 20 * * 2'
7
workflow_dispatch: # Allow manual triggering
8
9
-concurrency:
10
- group: 'permutation-testing'
11
- cancel-in-progress: true
12
-
13
permissions:
14
contents: read
15
16
jobs:
17
permutation-test:
18
name: Run Permutation Tests
19
- runs-on: ubuntu-latest
+ # Uses AWS CodeBuild managed runners for higher memory capacity (64GB)
+ # The permutation tests are memory-intensive and require more resources than standard GitHub runners
+ runs-on:
+ - codebuild-ThorGHA-${{ github.run_id }}-${{ github.run_attempt }}
+ - image:arm-3.0
20
+ - instance-size:xlarge # 32 vCPUs, 64 GiB memory
21
timeout-minutes: 240 # 4 hours
22
steps:
23
- name: Checkout code
0 commit comments