github-actions: fix used compiler

Fixes: 130e0dced2 ("github-actions: compile with gcc and clang using Makefile")
This commit is contained in:
Marc Kleine-Budde
2025-03-03 13:20:50 +01:00
parent 651c8818dd
commit 837e2bb343
+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