-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (33 loc) · 972 Bytes
/
main.yml
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
name: build
on: [push]
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt install verilator
- run: verilator --version
- run: wget https://vcvrack.com/downloads/Rack-SDK-2.4.1-lin-x64.zip
- run: unzip Rack-SDK*.zip && rm Rack-SDK*.zip
- run: make RACK_DIR=`pwd`/Rack-SDK
- uses: actions/upload-artifact@v4
with:
name: plugin
path: |
plugin.so
plugin.json
macos-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: brew install verilator
- run: verilator --version
- run: wget https://vcvrack.com/downloads/Rack-SDK-2.4.1-mac-x64.zip
- run: unzip Rack-SDK*.zip && rm Rack-SDK*.zip
- run: make RACK_DIR=`pwd`/Rack-SDK
- uses: actions/upload-artifact@v4
with:
name: plugin
path: |
plugin.so
plugin.json