From 8dafefce73e535bf849152cf6b44df3540ff2417 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 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0298145..d3c0c9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,8 @@ on: jobs: readme-tests: runs-on: ubuntu-latest + container: + image: debian:bullseye steps: - name: Checkout sources uses: actions/checkout@v4 @@ -16,8 +18,8 @@ jobs: 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: |