-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(actions): Github Actions now builds and releases artifacts. (#15)
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: ci_meson | ||
|
||
on: [push] | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
- run: pip install meson ninja | ||
- run: meson setup builddir/ | ||
- run: meson compile livepresets_x86_64 -C builddir/ -v -j 14 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux x86_x64 | ||
path: builddir/reaper_livepresets_x86_64.so | ||
|
||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
- run: brew install gcc php | ||
- run: pip install meson ninja | ||
- run: meson setup builddir/ | ||
- run: meson compile livepresets_aarch64 -C builddir/ -v -j 14 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: MacOS Arm64 | ||
path: builddir/reaper_livepresets_aarch64.dylib | ||
|
||
windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
- run: pip install meson ninja | ||
- uses: TheMrMilchmann/setup-msvc-dev@v3 | ||
with: | ||
arch: x64 | ||
- run: meson setup builddir/ | ||
- run: meson compile livepresets_x64 -C builddir/ -v -j 14 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Windows x86_x64 | ||
path: builddir/reaper_livepresets_x64.dll | ||
|
||
publish: | ||
needs: | ||
- linux | ||
- windows | ||
- macos | ||
if: github.ref_type == 'tag' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
path: builddir/reaper_livepresets_x86_64.dll | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
path: builddir/reaper_livepresets_aarch64.dll | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
path: builddir/reaper_livepresets_x64.dll | ||
- uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | ||
builddir/reaper_livepresets_x86_64.so | ||
builddir/reaper_livepresets_x64.dll | ||
builddir/reaper_livepresets_aarch64.dylib |