Skip to content

Commit

Permalink
build samples on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
erincatto committed Nov 8, 2024
1 parent fc16434 commit e700300
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,16 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/build --config Release


samples-macos:
name: macos
runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DBOX2D_SAMPLES=ON -DBUILD_SHARED_LIBS=OFF -DBOX2D_UNIT_TESTS=OFF

- name: Build
run: cmake --build ${{github.workspace}}/build --config Release

0 comments on commit e700300

Please sign in to comment.