Skip to content

Commit

Permalink
.github/workflows/ansible-lint: clean runners
Browse files Browse the repository at this point in the history
Make each ansible-lint runs on its own runner.
This avoids having problem on runner on which we don't have access.

Signed-off-by: Erwann Roussy <[email protected]>
  • Loading branch information
eroussy committed Sep 9, 2024
1 parent c6c934e commit 6e446c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ansible-lint-debian-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ permissions:

jobs:
ansible-lint:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: [self-hosted, runner-RTE-12]
with:
ref: debian-main
- name: Initialize sources
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ansible-lint-yocto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ permissions:

jobs:
ansible-lint:
runs-on: self-hosted
runs-on: [self-hosted, runner-SFL]
steps:

- uses: actions/checkout@v4
- name: Initialize sources
run: mkdir ${{ env.WORK_DIR }}; cd ${{ env.WORK_DIR }};
git clone -q --depth 1 -b main https://github.com/seapath/ci ci;
Expand Down

0 comments on commit 6e446c2

Please sign in to comment.