Skip to content

Commit

Permalink
ci: add MacOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed May 3, 2024
1 parent 1a84b55 commit 46b35fa
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,25 @@ jobs:
with:
name: 'ARM x64 Shared Object'
path: 'build/libdmusic*'
macos:
name: "MacOS"
runs-on: 'macos-11'
steps:
- uses: 'actions/checkout@v3'
with:
submodules: 'recursive'
- uses: 'maxim-lobanov/setup-xcode@v1'
with:
xcode-version: 13
- name: 'Configure'
run: 'cmake -B build -DCMAKE_BUILD_TYPE=Release'
- name: 'Build'
run: 'cmake --build build --config Release'
- name: 'Publish Library'
uses: 'actions/upload-artifact@v3'
with:
name: 'MacOS x86-64 DyLib'
path: 'build/libdmusic*'
windows:
name: "Windows"
runs-on: 'windows-latest'
Expand Down

0 comments on commit 46b35fa

Please sign in to comment.