Chisel 5.1.0 #107
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: Test | |
on: | |
push: | |
branches: [ '**' ] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
scala: [2.13.10] | |
jvm: [adopt@1.11] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Setup Mill | |
uses: jodersky/setup-mill@master | |
with: | |
mill-version: 0.11.0 | |
- name: Install simulators | |
run: sudo apt-get install -y verilator iverilog | |
- name: Install other dependencies | |
run: sudo apt-get install -y gcc libboost-dev z3 | |
- name: Compile | |
run: mill fpu-wrappers.compile | |
- name: Test | |
run: mill fpu-wrappers.test |