Skip to content

Commit ab486fe

Browse files
committed
ci: increase size of runners for Linux and Windows
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 1a1506e commit ab486fe

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.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: 4 additions & 4 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:
@@ -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)