Merge pull request #590 from marckleinebudde/fix-makefile-into-ci

github-actions: fix used compiler
pull/591/head
Marc Kleine-Budde 2025-03-03 13:22:57 +01:00 committed by GitHub
commit 4d908bd7cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -148,16 +148,16 @@ jobs:
- name: Configure & Build with gcc (Makefile)
env:
CC: gcc
cc: gcc
run: |
podman exec -i stable make
podman exec -i stable make CC=${cc}
podman exec -i stable make clean
- name: Configure & Build with clang (Makefile)
env:
CC: clang
cc: clang
run: |
podman exec -i stable make
podman exec -i stable make CC=${cc}
podman exec -i stable make clean
- name: Show logs