Skip to content

Commit

Permalink
add basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vk2seb committed Apr 7, 2024
1 parent 50758c3 commit 6394a81
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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

0 comments on commit 6394a81

Please sign in to comment.