diff --git a/.github/workflows/CMake-macOS.yml b/.github/workflows/CMake-macOS.yml new file mode 100644 index 00000000..0ba7587d --- /dev/null +++ b/.github/workflows/CMake-macOS.yml @@ -0,0 +1,20 @@ +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 yasm + - name: Configure (CMake) + run: | + cmake -S ports/cmake-B build -GNinja + - name: Build (CMake) + run: | + cmake --build build