From 07ef7b25b85fea8a1ef9860cb25f83ef9d15aa56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Ob=C5=82onczek?= Date: Mon, 8 Jan 2024 12:24:22 +0100 Subject: [PATCH] Install dependencies necessary to run interconnect test in github workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Krzysztof Obłonczek --- .github/workflows/pipeline.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 0c726eec..eaaf91ab 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -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.8", "3.9", "3.10", "3.11", "3.12"] + env: + DEBIAN_FRONTEND: noninteractive steps: - uses: actions/checkout@v3 with: @@ -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 nox python3 -m pip install git+https://github.com/antmicro/tuttest