Skip to content

Commit

Permalink
ci: Add macOS CMake ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed May 1, 2024
1 parent 0799988 commit ff8a07a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CMake-macOS.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ff8a07a

Please sign in to comment.