Skip to content

add basic CI

add basic CI #6

Workflow file for this run

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
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