Skip to content

Update README

Update README #38

Workflow file for this run

name: test
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install iverilog
shell: bash
run: sudo apt-get update && sudo apt-get install -y iverilog
# Set Python up and install cocotb
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install cocotb 1.8.x
if: ${{ hashFiles('test/requirements.txt') == '' }}
shell: bash
run: |
pip install cocotb~=1.8.0
cocotb-config --libpython
cocotb-config --python-bin
- name: Install Python packages
if: ${{ hashFiles('test/requirements.txt') != '' }}
shell: bash
run: pip install -r test/requirements.txt
- name: Run tests
run: |
cd test
make clean
make
# make will return success even if the test fails, so check for failure in the results.xml
! grep failure results.xml
- name: Test Summary
uses: test-summary/action@v2.2
with:
paths: "test/results.xml"
if: always()
- name: Upload FST and image
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: test-fst
path: |
test/tb.fst
test/results.xml
test/*.png