Skip to content

Commit 898c237

Browse files
authored
Use free runners Node.js CI (#3715)
1 parent b090713 commit 898c237

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/node-ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ jobs:
7676
include:
7777
- runs-on: ubuntu-22.04
7878
arch: x86_64
79-
- runs-on: MapLibre_Native_Ubuntu_22_04_ARM_8_core
79+
- runs-on: ubuntu-22.04-arm
8080
arch: arm64
8181
- runs-on: macos-14
8282
arch: arm64
83-
- runs-on: macos-14-large
83+
- runs-on: macos-13
8484
arch: x86_64
8585
- runs-on: windows-2022
8686
arch: x86_64
@@ -157,7 +157,8 @@ jobs:
157157
"PATH=$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Append
158158
159159
- name: Setup cmake
160-
if: ${{contains(runner.name, 'GitHub Actions')}}
160+
# linux arm not supported https://github.com/jwlawson/actions-setup-cmake/issues/79
161+
if: ${{contains(runner.name, 'GitHub Actions') && matrix.runs-on != 'ubuntu-22.04-arm' }}
161162
uses: jwlawson/actions-setup-cmake@v2
162163
with:
163164
cmake-version: '3.31'

.github/workflows/node-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
include:
4747
- runs-on: ubuntu-22.04
4848
arch: x86_64
49-
- runs-on: MapLibre_Native_Ubuntu_22_04_ARM_8_core
49+
- runs-on: ubuntu-22.04-arm
5050
arch: arm64
5151
- runs-on: macos-14
5252
arch: arm64
53-
- runs-on: macos-14-large
53+
- runs-on: macos-13
5454
arch: x86_64
5555
- runs-on: windows-2022
5656
arch: x86_64

0 commit comments

Comments
 (0)