github-actions: fix used compiler

Fixes: 130e0dced2 ("github-actions: compile with gcc and clang using Makefile")
pull/590/head
Marc Kleine-Budde 2025-03-03 13:16:22 +01:00
parent 651c8818dd
commit 837e2bb343
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