Skip to content

Commit

Permalink
add tool and pip versions report to test
Browse files Browse the repository at this point in the history
  • Loading branch information
bat52 committed Feb 6, 2024
1 parent 1e07b09 commit 4376af7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/test_ubuntu_20p04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ on: [push]

jobs:
build:
runs-on: ubuntu-20.04 # ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9"]
steps:
- name: install verilator
run: |
sudo apt install verilator
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand All @@ -20,6 +17,14 @@ jobs:
- name: Install dependencies
run: |
./install_dependencies.sh
- name: tool versions
run: |
iverilog -V
verilator --version
yosys -V
- name: pip configuration report
run: |
pip list
- name: test
run: |
cd ./test
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/test_ubuntu_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10","3.11"]
python-version: ["3.10","3.11"]
steps:
- name: install verilator
run: |
sudo apt install verilator
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand All @@ -20,6 +17,14 @@ jobs:
- name: Install dependencies
run: |
./install_dependencies.sh
- name: tool versions
run: |
iverilog -V
verilator --version
yosys -V
- name: pip configuration report
run: |
pip list
- name: test
run: |
cd ./test
Expand Down

0 comments on commit 4376af7

Please sign in to comment.