Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
allnes authored Jan 18, 2024
1 parent e0a3267 commit 8a0ca5a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,22 @@ jobs:
with:
name: windows-artifacts
path: build/bin/
macos-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup environment
run: |
brew install --cask mactex
brew install ninja
- name: Build
run: |
mkdir build
cmake -G Ninja -S . -B build -D USE_LATEX=ON
cmake --build build
- uses: actions/upload-artifact@v4
with:
name: macos-artifacts
path: build/bin/

0 comments on commit 8a0ca5a

Please sign in to comment.