Skip to content

Commit b8f2327

Browse files
committed
Migrate to macos-15-intel github action image
The macos-13 image will be removed soon and macos-14-(x)large / x86_64 is not availble for free: https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/
1 parent 7e70ea3 commit b8f2327

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,9 @@ jobs:
354354
name: "tic80-nintendo-3ds"
355355
path: build/bin/tic80.3dsx
356356

357-
# === MacOS 13 ===
358-
macos:
359-
runs-on: macos-13
357+
# === MacOS 14 / arm64 ===
358+
macos-arm64:
359+
runs-on: macos-14
360360

361361
steps:
362362
- uses: actions/checkout@v4
@@ -376,7 +376,7 @@ jobs:
376376
- name: Deploy
377377
uses: actions/upload-artifact@v4
378378
with:
379-
name: "tic80-macos"
379+
name: "tic80-macos-arm64"
380380
path: |
381381
build/bin/tic80
382382
build/bin/*.dylib
@@ -387,9 +387,9 @@ jobs:
387387
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDLGPU=On -DBUILD_PRO=On -DBUILD_WITH_ALL=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
388388
cmake --build . --parallel
389389
390-
# === MacOS 14 / arm64 ===
391-
macos-arm64:
392-
runs-on: macos-14
390+
# === MacOS 15 / x86_64 ===
391+
macos:
392+
runs-on: macos-15-intel
393393

394394
steps:
395395
- uses: actions/checkout@v4
@@ -409,15 +409,15 @@ jobs:
409409
- name: Deploy
410410
uses: actions/upload-artifact@v4
411411
with:
412-
name: "tic80-macos-arm64"
412+
name: "tic80-macos"
413413
path: |
414414
build/bin/tic80
415415
build/bin/*.dylib
416416
417417
- name: Build Pro
418418
run: |
419419
cd build
420-
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDLGPU=On -DBUILD_PRO=On -DBUILD_WITH_ALL=ON ..
420+
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDLGPU=On -DBUILD_PRO=On -DBUILD_WITH_ALL=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
421421
cmake --build . --parallel
422422
423423
# === Android ===

0 commit comments

Comments
 (0)