From 194feb761abb3d82b9e3af071bafe9001dc12804 Mon Sep 17 00:00:00 2001 From: Grzegorz Latosinski Date: Fri, 23 Feb 2024 08:43:24 +0100 Subject: [PATCH] [#54920] GH Actions: Changed base CI container The mono-complete version available in ubuntu-latest is currently not compatible with Renode and fails during simulation. We change the base container to debian:bullseye to allow simulation in the CI environment Signed-off-by: Grzegorz Latosinski --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0298145..82731b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,15 +9,15 @@ on: jobs: readme-tests: runs-on: ubuntu-latest + container: + image: debian:bullseye steps: - name: Checkout sources uses: actions/checkout@v4 - with: - submodules: 'recursive' - name: Install tuttest dependencies run: | - sudo apt-get update -qqy - sudo apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs + apt-get update -qqy + apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs sudo sudo pip3 install git+https://github.com/antmicro/tuttest.git - name: Run README.md snippets run: |