Skip to content

Commit 4a67a7d

Browse files
committed
add basic CI
1 parent 50758c3 commit 4a67a7d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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-latest-lin-x64.zip
13+
- run: unzip Rack-SDK*.zip && rm Rack-SDK*.zip
14+
- run: export RACK_DIR=`pwd`/Rack-SDK/
15+
- run: make

0 commit comments

Comments
 (0)