Skip to content

Commit

Permalink
GitHub workflows: native.yml: use extra job for clang
Browse files Browse the repository at this point in the history
Running "make" in a container and "make clean" outside doesn't
work (access right issues). So just use separate jobs.

Signed-off-by: Martin Wilck <[email protected]>
  • Loading branch information
mwilck committed Sep 13, 2024
1 parent 1171262 commit e702a5c
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/native.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,22 @@ jobs:
path: ${{ env.ARCHIVE_TGT }}
overwrite: true

- name: clean
run: make clean
clang:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os:
- debian-jessie
- debian-buster
- debian-bullseye
- debian-bookworm
- fedora-40
- opensuse-leap
steps:
- name: checkout
uses: actions/checkout@v1

- name: clang
if: ${{ matrix.os != 'debian-jessie' }}
uses: mosteo-actions/docker-run@v1
Expand Down

0 comments on commit e702a5c

Please sign in to comment.