Skip to content

Commit 9bb5a42

Browse files
committed
use ubuntu-24.04 and ubuntu-24.04-arm
1 parent b064588 commit 9bb5a42

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
os: [ubuntu-latest, buildjet-2vcpu-ubuntu-2204-arm]
32+
os: [ubuntu-24.04, ubuntu-24.04-arm]
3333

3434
runs-on: ${{matrix.os}}
3535

@@ -61,7 +61,7 @@ jobs:
6161
needs:
6262
- static-binaries-linux
6363

64-
runs-on: buildjet-2vcpu-ubuntu-2204-arm
64+
runs-on: ubuntu-24.04-arm
6565

6666
steps:
6767
- name: Checkout
@@ -105,7 +105,7 @@ jobs:
105105
os: [
106106
macos-13, # x64
107107
macos-14, # ARM
108-
ubuntu-latest,
108+
ubuntu-24.04,
109109
windows-latest,
110110
]
111111
ocaml_compiler: [4.14.1]
@@ -226,24 +226,24 @@ jobs:
226226
if: runner.os == 'Windows'
227227
run: node scripts/ciTest.js -mocha -theme -format
228228

229-
# Build the playground compiler on the fastest runner (ubuntu-latest)
229+
# Build the playground compiler on the fastest runner (ubuntu-24.04)
230230
- name: Install JSOO
231-
if: matrix.os == 'ubuntu-latest'
231+
if: matrix.os == 'ubuntu-24.04'
232232
run: opam install js_of_ocaml.4.0.0
233233

234234
- name: Build playground compiler
235-
if: matrix.os == 'ubuntu-latest'
235+
if: matrix.os == 'ubuntu-24.04'
236236
run: |
237237
opam exec -- node packages/playground-bundling/scripts/generate_cmijs.js
238238
opam exec -- dune build --profile browser
239239
cp ./_build/default/jscomp/jsoo/jsoo_playground_main.bc.js playground/compiler.js
240240
241241
- name: Test playground compiler
242-
if: matrix.os == 'ubuntu-latest'
242+
if: matrix.os == 'ubuntu-24.04'
243243
run: node playground/playground_test.js
244244

245245
- name: Upload playground compiler to CDN
246-
if: ${{ matrix.os == 'ubuntu-latest' && startsWith(github.ref, 'refs/tags/v') }}
246+
if: ${{ matrix.os == 'ubuntu-24.04' && startsWith(github.ref, 'refs/tags/v') }}
247247
env:
248248
KEYCDN_USER: ${{ secrets.KEYCDN_USER }}
249249
KEYCDN_PASSWORD: ${{ secrets.KEYCDN_PASSWORD }}
@@ -267,7 +267,7 @@ jobs:
267267

268268
package:
269269
needs: build
270-
runs-on: ubuntu-latest
270+
runs-on: ubuntu-24.04
271271

272272
steps:
273273
- name: Checkout
@@ -323,8 +323,8 @@ jobs:
323323
os: [
324324
macos-13, # x64
325325
macos-14, # ARM
326-
ubuntu-latest,
327-
buildjet-2vcpu-ubuntu-2204-arm,
326+
ubuntu-24.04,
327+
ubuntu-24.04-arm,
328328
windows-latest,
329329
]
330330

@@ -360,7 +360,7 @@ jobs:
360360

361361
if: startsWith(github.ref, 'refs/tags/v')
362362

363-
runs-on: ubuntu-latest
363+
runs-on: ubuntu-24.04
364364

365365
steps:
366366
- name: Checkout

0 commit comments

Comments
 (0)