Fix handling of undefined version macros #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run basic testbench | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Basic testbench | |
env: | |
REPO : VeeRwolf | |
VLNV : veerwolf | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
path: VeeRwolf | |
- run: sudo apt install verilator | |
- run: pip3 install fusesoc | |
- run: fusesoc library add fusesoc-cores https://github.com/fusesoc/fusesoc-cores | |
- run: fusesoc library add $REPO $GITHUB_WORKSPACE/$REPO | |
- run: fusesoc run --target=sim $VLNV --timeout=20000 |