We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af5c03e commit 37ae19aCopy full SHA for 37ae19a
.github/workflows/nightly-gauntlet.yaml
@@ -11,7 +11,7 @@ jobs:
11
# While GitHub's toaster runners are likelier to flake, we want consistency
12
# between this environment and the regular test environment for DataDog
13
# statistics and to only show real workflow threats.
14
- runs-on: "buildjet-8vcpu-ubuntu-2204"
+ runs-on: ${{ github.repository_owner == 'coder' && 'buildjet-8vcpu-ubuntu-2204' || 'ubuntu-latest' }}
15
# This runner costs 0.016 USD per minute,
16
# so 0.016 * 240 = 3.84 USD per run.
17
timeout-minutes: 240
@@ -40,7 +40,7 @@ jobs:
40
41
go-timing:
42
# We run these tests with p=1 so we don't need a lot of compute.
43
- runs-on: "buildjet-2vcpu-ubuntu-2204"
+ runs-on: ${{ github.repository_owner == 'coder' && 'buildjet-2vcpu-ubuntu-2204' || 'ubuntu-latest' }}
44
timeout-minutes: 10
45
steps:
46
- name: Checkout
0 commit comments