update doc #160
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: "CI" | |
on: | |
pull_request: | |
push: | |
# Comment out this section to enable testing of all branches. | |
branches: | |
- master | |
jobs: | |
behavioral: | |
runs-on: self-hosted | |
strategy: | |
fail-fast: false | |
matrix: | |
behs: | |
- road/tb/subfunc.py | |
- road/tb/pat_unit_beh.py | |
- road/tb/pat_unit_mux_beh.py | |
- road/tb/partition_beh.py | |
- road/tb/chamber_beh.py | |
- road/tb/analysis_mc.py | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Test Behaviors | |
run: pytest ${{ matrix.behs }} | |
cocotb: | |
runs-on: self-hosted | |
strategy: | |
fail-fast: false | |
matrix: | |
testbenches: | |
- road/tb/test_mult.py | |
- road/tb/test_fit.py | |
- road/tb/test_pat_unit.py | |
- road/tb/test_pat_unit_mux.py | |
- road/tb/test_partition.py | |
- road/tb/test_chamber.py | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Test Firmware Module | |
run: python ${{ matrix.testbenches }} | |
synth: | |
runs-on: self-hosted | |
strategy: | |
fail-fast: false | |
matrix: | |
testbenches: | |
- synth_pat_unit | |
- synth_chamber | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Synthesize Firmware | |
run: make -C road/hdl ${{ matrix.testbenches }} |