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 602853d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 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 Expand Up @@ -64,7 +71,7 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.10"

- name: Install tuttest and fpga-topwrap
run: |
Expand Down

0 comments on commit 602853d

Please sign in to comment.