Skip to content

Commit

Permalink
[#48058] GH Actions: Switched to using the Debian container
Browse files Browse the repository at this point in the history
Signed-off-by: Grzegorz Latosinski <[email protected]>
  • Loading branch information
glatosinski committed Mar 2, 2024
1 parent 86e39e1 commit d609a37
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: 'recursive'
lfs: true
readme-tests:
runs-on: ubuntu-latest
container:
image: debian:bullseye
steps:
- 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 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: Checkout sources
uses: actions/checkout@v4
with:
submodules: 'recursive'
lfs: true
- name: Run README.md snippets
run: |
./.github/scripts/readme-tests.sh
Expand Down

0 comments on commit d609a37

Please sign in to comment.