Bump submodules #112
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-22.04 | |
strategy: | |
matrix: | |
scala: [2.13.10] | |
jvm: [[email protected]] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Setup Mill | |
uses: jodersky/setup-mill@master | |
with: | |
mill-version: 0.11.5 | |
- name: Setup nix env | |
uses: JRMurr/[email protected] | |
- 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 |