Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,9 @@ jobs:
name: "tic80-nintendo-3ds"
path: build/bin/tic80.3dsx

# === MacOS 13 ===
macos:
runs-on: macos-13
# === MacOS 14 / arm64 ===
macos-arm64:
runs-on: macos-14

steps:
- uses: actions/checkout@v4
Expand All @@ -376,7 +376,7 @@ jobs:
- name: Deploy
uses: actions/upload-artifact@v4
with:
name: "tic80-macos"
name: "tic80-macos-arm64"
path: |
build/bin/tic80
build/bin/*.dylib
Expand All @@ -387,9 +387,9 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDLGPU=On -DBUILD_PRO=On -DBUILD_WITH_ALL=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
cmake --build . --parallel

# === MacOS 14 / arm64 ===
macos-arm64:
runs-on: macos-14
# === MacOS 15 / x86_64 ===
macos:
runs-on: macos-15-intel

steps:
- uses: actions/checkout@v4
Expand All @@ -409,15 +409,15 @@ jobs:
- name: Deploy
uses: actions/upload-artifact@v4
with:
name: "tic80-macos-arm64"
name: "tic80-macos"
path: |
build/bin/tic80
build/bin/*.dylib

- name: Build Pro
run: |
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDLGPU=On -DBUILD_PRO=On -DBUILD_WITH_ALL=ON ..
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDLGPU=On -DBUILD_PRO=On -DBUILD_WITH_ALL=ON -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..
cmake --build . --parallel

# === Android ===
Expand Down
Loading