Skip to content

Commit

Permalink
[enhc] support for multiple Python versions (riscv#299)
Browse files Browse the repository at this point in the history
* Refactor GitHub Actions workflow to support multiple Python versions

Signed-off-by: Myrausman <[email protected]>

* CI improvements

* MInor update python-app.yml

Signed-off-by: Jay Dev Jha <[email protected]>

---------

Signed-off-by: Myrausman <[email protected]>
Signed-off-by: Jay Dev Jha <[email protected]>
Co-authored-by: Jay Dev Jha <[email protected]>
  • Loading branch information
Myrausman and IIITM-Jay committed Nov 14, 2024
1 parent eb7f25b commit c182da6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,43 @@ jobs:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

python-version: ${{ matrix.python-version }}

- name: Install Coverage
run: |
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

run: cat encoding.out.h | cpp

- name: Generate coverage
run: coverage xml


- name: Upload coverage
uses: codecov/codecov-action@v4
15 changes: 12 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,31 @@ jobs:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip3 install coverage
- name: Test error outputs
run: coverage run -m unittest -b

- name: Generate coverage report

- name: Generate coverage report
run: coverage xml

- name: Upload coverage report
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v2

0 comments on commit c182da6

Please sign in to comment.