From 837e2bb343a1aab57876b31a73fcad65c7b1d13b Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Mon, 3 Mar 2025 13:16:22 +0100 Subject: [PATCH] github-actions: fix used compiler Fixes: 130e0dced288 ("github-actions: compile with gcc and clang using Makefile") --- .github/workflows/compile.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 438cb5b..291ca17 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -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