Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,19 @@ jobs:
with:
jvm: adopt:11
apps: sbt
- name: Setup Dependencies
run: sudo apt-get install verilator
- name: Install OSS CAD Suite
run: | # always fetch the most recent release
wget \
$(wget -qO- \
https://api.github.com/repos/YosysHQ/oss-cad-suite-build/releases/latest \
| grep browser_download_url \
| grep 'linux-x64.*tgz' \
| cut -d '"' -f 4)
tar -xzf oss-cad-suite-linux-x64*.tgz
- name: Run tests
run: sbt test
run: |
source oss-cad-suite/environment
sbt test

docs:
name: Generate and Deploy Docs
Expand Down
Loading
Loading