Skip to content

Commit

Permalink
feat(actions): Github Actions now builds and releases artifacts. (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Burtan committed Apr 28, 2024
1 parent a6b690a commit 88167f8
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
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: artifacts
merge-multiple: true
- run: ls -R artifacts
- uses: softprops/action-gh-release@v2
with:
files:
artifacts/reaper_livepresets_x86_64.so
artifacts/reaper_livepresets_x64.dll
artifacts/reaper_livepresets_aarch64.dylib

0 comments on commit 88167f8

Please sign in to comment.