Skip to content

Commit 1bd3ade

Browse files
committed
ci: increase size of runners for Linux, Windows, and macOS (Intel)
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent fb8ed8f commit 1bd3ade

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
# macos-14: arm64 (oldest supported version as of 18-11-2025)
2020
# macos-15-intel: amd64 (last intel version to be supported by github runners)
2121
# See https://github.com/actions/runner-images/issues/13046
22-
os: [macos-14, macos-15-intel]
22+
os: [macos-14, macos-15-large]
2323
include:
2424
- os: macos-14
2525
goarch: arm64
26-
- os: macos-15-intel
26+
- os: macos-15-large
2727
goarch: amd64
2828
runs-on: ${{ matrix.os }}
2929
steps:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
push_to_registry:
1616
name: build-push-dev
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24-04-better
1818
permissions:
1919
packages: write
2020
contents: read

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# Build Linux binaries, ready for release.
1717
# This runs inside an Alpine Linux container so we can more easily create a
1818
# statically linked binary.
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24-04-better
2020
container:
2121
image: golang:1.26-alpine
2222
outputs:
@@ -132,7 +132,7 @@ jobs:
132132
archive: false
133133
test-linux-build:
134134
# Test the binaries built in the build-linux job by running the smoke tests.
135-
runs-on: ubuntu-latest
135+
runs-on: ubuntu-24-04-better
136136
needs: build-linux
137137
steps:
138138
- name: Checkout
@@ -166,7 +166,7 @@ jobs:
166166
assert-test-linux:
167167
# Run all tests that can run on Linux, with LLVM assertions enabled to catch
168168
# potential bugs.
169-
runs-on: ubuntu-latest
169+
runs-on: ubuntu-24-04-better
170170
steps:
171171
- name: Checkout
172172
uses: actions/checkout@v6

.github/workflows/windows.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313

1414
jobs:
1515
build-windows:
16-
runs-on: windows-2022
16+
runs-on: windows-2022-better
1717
outputs:
1818
version: ${{ steps.version.outputs.version }}
1919
steps:
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/cache/restore@v5
4747
id: cache-llvm-source
4848
with:
49-
key: llvm-source-20-windows-v1
49+
key: llvm-source-20-windows-v2
5050
path: |
5151
llvm-project/clang/lib/Headers
5252
llvm-project/clang/include
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/cache/restore@v5
7272
id: cache-llvm-build
7373
with:
74-
key: llvm-build-20-windows-v2
74+
key: llvm-build-20-windows-v3
7575
path: llvm-build
7676
- name: Build LLVM
7777
if: steps.cache-llvm-build.outputs.cache-hit != 'true'
@@ -93,7 +93,7 @@ jobs:
9393
- name: Cache Go cache
9494
uses: actions/cache@v5
9595
with:
96-
key: go-cache-windows-v2-${{ hashFiles('go.mod') }}
96+
key: go-cache-windows-v3-${{ hashFiles('go.mod') }}
9797
path: |
9898
C:/Users/runneradmin/AppData/Local/go-build
9999
C:/Users/runneradmin/go/pkg/mod
@@ -121,7 +121,7 @@ jobs:
121121
archive: false
122122

123123
smoke-test-windows:
124-
runs-on: windows-2022
124+
runs-on: windows-2022-better
125125
needs: build-windows
126126
steps:
127127
- name: Configure pagefile
@@ -154,7 +154,7 @@ jobs:
154154
run: make smoketest TINYGO=$(PWD)/build/tinygo/bin/tinygo
155155

156156
stdlib-test-windows:
157-
runs-on: windows-2022
157+
runs-on: windows-2022-better
158158
needs: build-windows
159159
steps:
160160
- name: Configure pagefile
@@ -180,7 +180,7 @@ jobs:
180180
run: make tinygo-test TINYGO=$(PWD)/build/tinygo/bin/tinygo
181181

182182
stdlib-wasi-test-windows:
183-
runs-on: windows-2022
183+
runs-on: windows-2022-better
184184
needs: build-windows
185185
steps:
186186
- name: Configure pagefile

0 commit comments

Comments
 (0)