Skip to content

Commit

Permalink
[#54920] GH Actions: Changed base CI container
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
glatosinski committed Feb 23, 2024
1 parent 1382854 commit 194feb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 194feb7

Please sign in to comment.