diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7470b28c8..4a2ea59dd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 @@ -409,7 +409,7 @@ jobs: - name: Deploy uses: actions/upload-artifact@v4 with: - name: "tic80-macos-arm64" + name: "tic80-macos" path: | build/bin/tic80 build/bin/*.dylib @@ -417,7 +417,7 @@ jobs: - 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 ===