Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#54920] GH Actions: Changed base CI container #1

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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