Skip to content

Commit

Permalink
debugging github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cbatten committed Aug 18, 2024
1 parent 028da11 commit abf1b19
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/run-pymtl-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,24 @@ jobs:
- name: Check verilator
run: |
which verilator
verilator --version
pkg-config --modversion verilator
pkg-config --cflags verilator
- name: Install dependencies
run: |
sudo apt-get install -y graphviz
git clone [email protected]:pymtl/pymtl3
cd pymtl3
git checkout pymtl4.0-dev
pip install --upgrade pip
pip install --requirement requirements/CI.txt
pip install .
pip install -r requirements.txt
pip install -e .
pip list
- name: Run tests
run: |
mkdir -p build && cd build
pytest ..
mkdir -p pymtl3/build && cd pymtl3/build
pytest ../pymtl3

0 comments on commit abf1b19

Please sign in to comment.