Skip to content

Commit

Permalink
GitHub Actions: support macOS 15 (#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Sep 26, 2024
1 parent 34f7e49 commit b079492
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ jobs:
- { name: Alpine, os: ubuntu-latest, arch: x86, cc: gcc, shell: 'alpine.sh {0}', flags: "-DXRAY_LINKER=mold", }
- { name: Fedora, os: ubuntu-latest, arch: x86_64, cc: gcc, container: 'fedora:latest', }
#- { name: Haiku, os: ubuntu-latest, arch: x86_64, cc: x86_64-unknown-haiku-gcc, cxx: x86_64-unknown-haiku-g++, container: 'haiku/cross-compiler:x86_64-r1beta4', }
- { name: macOS, os: macos-13, arch: x86_64, cc: clang, flags: "-DCMAKE_OSX_DEPLOYMENT_TARGET=13.6" }
- { name: macOS, os: macos-14, arch: arm64, cc: clang, flags: "-DCMAKE_OSX_DEPLOYMENT_TARGET=14.0", threads: 3 }
- { name: macOS 13, os: macos-13, arch: x86_64, cc: clang, flags: "-DCMAKE_OSX_DEPLOYMENT_TARGET=13.6" }
- { name: macOS 14, os: macos-14, arch: arm64, cc: clang, flags: "-DCMAKE_OSX_DEPLOYMENT_TARGET=14.0", threads: 3 }
- { name: macOS 15, os: macos-15, arch: arm64, cc: clang, flags: "-DCMAKE_OSX_DEPLOYMENT_TARGET=15.0", threads: 3 }

configuration: [Debug, Release]

Expand Down Expand Up @@ -126,7 +127,7 @@ jobs:
libvorbis-dev:${{ matrix.platform.arch }}
- name: Install macOS packages
if: ${{ matrix.platform.name == 'macOS' }}
if: ${{ startsWith(matrix.platform.name, 'macOS') }}
run: |
brew update
brew install sdl2 lzo libogg libvorbis theora
Expand Down

0 comments on commit b079492

Please sign in to comment.