Skip to content

Commit cbfe418

Browse files
authored
switch linux runners to arc (#14)
1 parent 372e786 commit cbfe418

7 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
check:
1111
name: Check
12-
runs-on: ubuntu-24.04
12+
runs-on: t3code-arc
1313
timeout-minutes: 20
1414
steps:
1515
- name: Checkout
@@ -41,7 +41,7 @@ jobs:
4141
4242
test:
4343
name: Test
44-
runs-on: ubuntu-24.04
44+
runs-on: t3code-arc
4545
timeout-minutes: 20
4646
steps:
4747
- name: Checkout
@@ -63,7 +63,7 @@ jobs:
6363
test_browser:
6464
name: Test Browser
6565
if: false
66-
runs-on: ubuntu-24.04
66+
runs-on: t3code-arc
6767
timeout-minutes: 20
6868
steps:
6969
- name: Checkout
@@ -130,7 +130,7 @@ jobs:
130130

131131
release_smoke:
132132
name: Release Smoke
133-
runs-on: ubuntu-24.04
133+
runs-on: t3code-arc
134134
timeout-minutes: 10
135135
steps:
136136
- name: Checkout

.github/workflows/deploy-relay.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
deploy_relay:
1919
name: Deploy production relay
20-
runs-on: blacksmith-8vcpu-ubuntu-2404
20+
runs-on: t3code-arc
2121
timeout-minutes: 15
2222
environment:
2323
name: production

.github/workflows/issue-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
sync:
1717
name: Sync issue labels
18-
runs-on: ubuntu-24.04
18+
runs-on: t3code-arc
1919
steps:
2020
- name: Ensure managed issue labels exist
2121
uses: actions/github-script@v7

.github/workflows/mobile-eas-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
preview:
88
name: EAS Preview
99
if: github.repository_owner == 'pingdotgg'
10-
runs-on: blacksmith-8vcpu-ubuntu-2404
10+
runs-on: t3code-arc
1111
permissions:
1212
contents: read
1313
pull-requests: write

.github/workflows/pr-size.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
jobs:
1111
prepare-config:
1212
name: Prepare PR size config
13-
runs-on: ubuntu-24.04
13+
runs-on: t3code-arc
1414
outputs:
1515
labels_json: ${{ steps.config.outputs.labels_json }}
1616
steps:
@@ -58,7 +58,7 @@ jobs:
5858
name: Sync PR size label definitions
5959
needs: prepare-config
6060
if: github.event_name != 'pull_request_target'
61-
runs-on: ubuntu-24.04
61+
runs-on: t3code-arc
6262
permissions:
6363
contents: read
6464
issues: write
@@ -115,7 +115,7 @@ jobs:
115115
name: Label PR size
116116
needs: prepare-config
117117
if: github.event_name == 'pull_request_target'
118-
runs-on: ubuntu-24.04
118+
runs-on: t3code-arc
119119
permissions:
120120
contents: read
121121
issues: read

.github/workflows/pr-vouch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions:
2020
jobs:
2121
collect-targets:
2222
name: Collect PR targets
23-
runs-on: ubuntu-24.04
23+
runs-on: t3code-arc
2424
outputs:
2525
targets: ${{ steps.collect.outputs.targets }}
2626
steps:
@@ -66,7 +66,7 @@ jobs:
6666
name: Label PR ${{ matrix.target.number }}
6767
needs: collect-targets
6868
if: ${{ needs.collect-targets.outputs.targets != '[]' }}
69-
runs-on: ubuntu-24.04
69+
runs-on: t3code-arc
7070
concurrency:
7171
group: pr-vouch-${{ matrix.target.number }}
7272
cancel-in-progress: true

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
check_changes:
2929
name: Check for changes since last nightly
3030
if: github.event_name == 'schedule'
31-
runs-on: ubuntu-24.04
31+
runs-on: t3code-arc
3232
outputs:
3333
has_changes: ${{ steps.check.outputs.has_changes }}
3434
steps:
@@ -64,7 +64,7 @@ jobs:
6464
if: |
6565
!failure() && !cancelled() &&
6666
(github.event_name != 'schedule' || needs.check_changes.outputs.has_changes == 'true')
67-
runs-on: ubuntu-24.04
67+
runs-on: t3code-arc
6868
timeout-minutes: 10
6969
outputs:
7070
release_channel: ${{ steps.release_meta.outputs.release_channel }}
@@ -168,7 +168,7 @@ jobs:
168168
name: Resolve T3 Cloud public config
169169
needs: preflight
170170
if: ${{ !failure() && !cancelled() && needs.preflight.result == 'success' }}
171-
runs-on: blacksmith-8vcpu-ubuntu-2404
171+
runs-on: t3code-arc
172172
timeout-minutes: 5
173173
environment:
174174
name: production
@@ -242,7 +242,7 @@ jobs:
242242
target: dmg
243243
arch: x64
244244
- label: Linux x64
245-
runner: ubuntu-24.04
245+
runner: t3code-arc
246246
platform: linux
247247
target: AppImage
248248
arch: x64
@@ -480,7 +480,7 @@ jobs:
480480
name: Publish CLI to npm
481481
needs: [preflight, relay_public_config, build]
482482
if: ${{ false }} # Disabled for the fork: keep the private CLI package out of npm publishing.
483-
runs-on: ubuntu-24.04
483+
runs-on: t3code-arc
484484
timeout-minutes: 10
485485
permissions:
486486
contents: read
@@ -523,7 +523,7 @@ jobs:
523523
name: Publish GitHub Release
524524
needs: [preflight, build]
525525
if: ${{ !failure() && !cancelled() && needs.preflight.result == 'success' && needs.build.result == 'success' }}
526-
runs-on: ubuntu-24.04
526+
runs-on: t3code-arc
527527
timeout-minutes: 10
528528
steps:
529529
- id: app_token
@@ -640,7 +640,7 @@ jobs:
640640
name: Deploy hosted web app
641641
needs: [preflight, relay_public_config, release]
642642
if: ${{ false }} # Disabled for the fork: avoid deploying the hosted web app with upstream Vercel secrets.
643-
runs-on: ubuntu-24.04
643+
runs-on: t3code-arc
644644
timeout-minutes: 10
645645
env:
646646
T3CODE_CLERK_PUBLISHABLE_KEY: ${{ needs.relay_public_config.outputs.clerk_publishable_key }}
@@ -735,7 +735,7 @@ jobs:
735735
name: Finalize release
736736
if: ${{ false }} # Disabled for the fork: avoid committing release-only version bumps back to main.
737737
needs: [preflight, release]
738-
runs-on: ubuntu-24.04
738+
runs-on: t3code-arc
739739
timeout-minutes: 10
740740
steps:
741741
- id: app_token
@@ -810,7 +810,7 @@ jobs:
810810
name: Announce release on Discord
811811
if: ${{ false }} # Disabled for the fork: avoid posting upstream release announcements.
812812
needs: [preflight, relay_public_config, release, deploy_web, finalize]
813-
runs-on: ubuntu-24.04
813+
runs-on: t3code-arc
814814
timeout-minutes: 10
815815
steps:
816816
- name: Checkout

0 commit comments

Comments
 (0)