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

github-actions: fix used compiler
This commit is contained in:
Marc Kleine-Budde
2025-03-03 13:22:57 +01:00
committed by GitHub
+4 -4
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