Skip to content

Merge branch 'master' into Add-Python-File-Generator #32

Merge branch 'master' into Add-Python-File-Generator

Merge branch 'master' into Add-Python-File-Generator #32

Workflow file for this run

name: CI
on:
push:
branches:
- "*" # matches every branch that doesn't contain a '/'
- "*/*" # matches every branch containing a single '/'
- "**" # matches every branch
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
pandoc ghdl gtkwave verilator python3-pip \
texlive-latex-extra latexmk
- name: Install Python dependencies
run: pip install -e .
- name: Show Python version
run: python --version
- name: Run 'make gen'
run: make gen
- name: Run 'make compile_ghdl'
run: make compile_ghdl
- name: Run 'make compile_verilator'
run: make compile_verilator
- name: Run 'make test_c'
run: make test_c
- name: Run 'make test_rst'
run: make test_rst