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

[#66667] GHA: tuttest: Updated image to debian:bookworm #3

Merged
merged 2 commits into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
readme-tests:
runs-on: ubuntu-latest
container:
image: debian:bullseye
image: debian:bookworm
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install tuttest dependencies
run: |
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
sudo pip3 install --break-system-packages git+https://github.com/antmicro/tuttest.git
- name: Run README.md snippets
run: |
./scripts/test_readme.sh
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ To be able to build and use the project, you need the folowing dependencies:
* `jq`
* `curl`
* `west`
* `patch`
* `CMake`

On Debian-based Linux distributions, install the dependencies as follows:
Expand All @@ -105,7 +106,7 @@ sudo apt update
sudo apt install -y --no-install-recommends ccache curl device-tree-compiler dfu-util file \
g++-multilib gcc gcc-multilib git jq libmagic1 libsdl2-dev make ninja-build \
python3-dev python3-pip python3-setuptools python3-tk python3-wheel python3-venv \
mono-complete wget xxd xz-utils
mono-complete wget xxd xz-utils patch
```

### Cloning the project and preparing the environment
Expand Down
Loading