Skip to content

Commit 89d7788

Browse files
committed
add basic CI
1 parent 50758c3 commit 89d7788

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: build
2+
3+
on: [push]
4+
5+
jobs:
6+
ubuntu-build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- run: sudo apt install verilator
11+
- run: verilator --version
12+
- run: wget https://vcvrack.com/downloads/Rack-SDK-2.4.1-lin-x64.zip
13+
- run: unzip Rack-SDK*.zip && rm Rack-SDK*.zip
14+
- run: make RACK_DIR=`pwd`/Rack-SDK

0 commit comments

Comments
 (0)