Skip to content

Commit

Permalink
Install dependencies necessary to run interconnect test in github wor…
Browse files Browse the repository at this point in the history
…kflow

Signed-off-by: Krzysztof Obłonczek <koblonczek@internships.antmicro.com>
  • Loading branch information
koblonczek committed Jan 10, 2024
1 parent 4200a23 commit 5a4f3ec
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ jobs:
Tests:

runs-on: ubuntu-latest
container: verilator/verilator:v5.020
name: "Test Python ${{ matrix.python-version }}"
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10"]

env:
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -27,12 +30,16 @@ jobs:

- name: Install dev requirements
run: |
sudo apt-get update -qq
sudo apt-get install -y \
apt-get update -qq
apt-get install -y \
antlr4 \
libantlr4-runtime-dev \
python3-dev \
yosys
yosys \
gcc-riscv64-unknown-elf \
meson \
ninja-build \
bsdextrautils
python3 -m pip install --upgrade pip wheel setuptools
python3 -m pip install -r requirements.dev.txt
python3 -m pip install git+https://github.com/antmicro/tuttest
Expand Down

0 comments on commit 5a4f3ec

Please sign in to comment.