-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (73 loc) · 2.17 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
tag_name: ${{ github.ref }}