Skip to content

[enhc] support for multiple Python versions #526

[enhc] support for multiple Python versions

[enhc] support for multiple Python versions #526

Workflow file for this run

name: Opcodes generation
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, '3.10', 3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install PyYAML
run: |
pip3 install -r requirements.txt
pip3 install coverage
- name: Run pre-commit
run: |
python3 -m pip install pre-commit
pre-commit run --all-files
- name: Generate
run: coverage run ./parse.py -c -chisel -sverilog -rust -latex -spinalhdl -go "rv*" "unratified/rv*"
- name: Check C output
run: cat encoding.out.h | cpp
- name: Generate coverage
run: coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v2