-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#48058] GH Actions: Changed base image to debian:bullseye
Signed-off-by: Grzegorz Latosinski <[email protected]>
- Loading branch information
1 parent
86e39e1
commit 7011bf5
Showing
2 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,23 +7,28 @@ on: | |
branches: [main] | ||
|
||
jobs: | ||
readme-tests: | ||
cancel-previous-job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel previous | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
readme-tests: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: debian:bullseye | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
lfs: true | ||
- name: Install tuttest dependencies | ||
run: | | ||
sudo apt-get update -qqy | ||
sudo apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs | ||
sudo pip3 install git+https://github.com/antmicro/tuttest.git | ||
apt-get update -qqy | ||
apt-get install -qqy --no-install-recommends python3 python3-pip git-lfs colorized-logs sudo | ||
pip3 install git+https://github.com/antmicro/tuttest.git | ||
- name: Run README.md snippets | ||
run: | | ||
./.github/scripts/readme-tests.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters