Skip to content

Commit 594be6d

Browse files
committed
CI: go back to free runners
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent aef70a5 commit 594be6d

5 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-large]
22+
os: [macos-14, macos-15-intel]
2323
include:
2424
- os: macos-14
2525
goarch: arm64
26-
- os: macos-15-large
26+
- os: macos-15-intel
2727
goarch: amd64
2828
runs-on: ${{ matrix.os }}
2929
steps:

.github/workflows/compat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
test-compat:
19-
runs-on: ubuntu-22.04-better # this must be a specific version for the apt install below
19+
runs-on: ubuntu-22.04 # this must be a specific version for the apt install below
2020
env:
2121
# Oldest versions currently supported by TinyGo
2222
LLVM: "15"

.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-24-04-better
17+
runs-on: ubuntu-latest
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-24-04-better
19+
runs-on: ubuntu-latest
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-24-04-better
135+
runs-on: ubuntu-latest
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-24-04-better
169+
runs-on: ubuntu-latest
170170
steps:
171171
- name: Checkout
172172
uses: actions/checkout@v6

.github/workflows/windows.yml

Lines changed: 6 additions & 6 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-better
16+
runs-on: windows-2022
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-v2
49+
key: llvm-source-20-windows-v3
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-v3
74+
key: llvm-build-20-windows-v4
7575
path: llvm-build
7676
- name: Build LLVM
7777
if: steps.cache-llvm-build.outputs.cache-hit != 'true'
@@ -121,7 +121,7 @@ jobs:
121121
archive: false
122122

123123
smoke-test-windows:
124-
runs-on: windows-2022-better
124+
runs-on: windows-2022
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-better
157+
runs-on: windows-2022
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-better
183+
runs-on: windows-2022
184184
needs: build-windows
185185
steps:
186186
- name: Configure pagefile

0 commit comments

Comments
 (0)