Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/buildZMusic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- os: macos-latest
rid: osx-arm64
prereqs: |
brew install libsndfile mpg123
brew install libsndfile mpg123 dylibbundler
cmakeargsdynamic: -B build
cmakeargsstatic: -B build -DLIBTYPE=STATIC -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE -DBUILD_SHARED_LIBS=OFF
cmakeargscommon: -DDYN_SNDFILE:BOOL="0" -DDYN_MPG123:BOOL="0"
Expand Down Expand Up @@ -71,8 +71,12 @@ jobs:
cp ${{ matrix.libfiles }} build_native/${{ matrix.rid }}
shell: bash
- name: Strip Symbols (linux)
if: runner.os == 'Linux'
if: ${{ matrix.rid == 'linux-x64' }}
run: strip build_native/linux-x64/*.so
- name: Bundle Dependencies (MacOS)
if: ${{ matrix.rid == 'osx-arm64' }}
run: dylibbundler -b -x libzmusic.dylib -d . -p .
working-directory: build_native/osx-arm64
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand Down
Loading