Skip to content

Commit 17032c7

Browse files
committed
Use arm runners for common CI
1 parent a52c0c1 commit 17032c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
check:
1313
name: "Test & Release"
14-
runs-on: blacksmith-2vcpu-ubuntu-2404
14+
runs-on: blacksmith-2vcpu-ubuntu-2404-arm # arm is half the price
1515
steps:
1616
- uses: actions/checkout@v5
1717

.github/workflows/library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
lint:
88
name: Runs static checks
9-
runs-on: blacksmith-2vcpu-ubuntu-2404-arm # arm is cheaper than x64
9+
runs-on: blacksmith-2vcpu-ubuntu-2404-arm # arm is half the price
1010
steps:
1111
- uses: actions/checkout@v5
1212
- uses: mlugg/setup-zig@v2

.github/workflows/overseer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
overseer:
15-
runs-on: blacksmith-2vcpu-ubuntu-2404
15+
runs-on: blacksmith-2vcpu-ubuntu-2404-arm # arm is half the price
1616
steps:
1717
- uses: actions/checkout@v5
1818
- uses: astral-sh/setup-uv@v7

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
# Converting a git tag into a stub of an immutable release
1313
release:
14-
runs-on: blacksmith-2vcpu-ubuntu-2404
14+
runs-on: blacksmith-2vcpu-ubuntu-2404-arm # arm is half the price
1515
needs: [build]
1616
permissions:
1717
contents: write # for releases API

0 commit comments

Comments
 (0)