From f1210a6b81793bb6aa889f281ecf53891f62561b Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Thu, 10 Oct 2024 08:42:29 -0500 Subject: [PATCH] Revert removing CC=gcc --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7bca7553..cb57cc0c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,10 +62,10 @@ jobs: gcc - name: Build shell: cmd - run: make -j4 JANET_NO_AMALG=1 + run: make -j4 CC=gcc JANET_NO_AMALG=1 - name: Test shell: cmd - run: make -j4 JANET_NO_AMALG=1 + run: make test -j4 CC=gcc JANET_NO_AMALG=1 test-mingw-linux: name: Build and test with Mingw on Linux + Wine