Merge remote-tracking branch 'mpg123/master' into master-with-github-ci #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CMake macOS | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, macos-13] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install ninja & yasm | |
run: brew install ninja yasm | |
- name: Configure (CMake) | |
run: | | |
cmake -S ports/cmake -B build -GNinja | |
- name: Build (CMake) | |
run: | | |
cmake --build build |