From 6ca1aea5aed17ba8c4c6420ffd3dd5cc380e0c1a Mon Sep 17 00:00:00 2001 From: Waleed Judah Date: Sat, 7 Jun 2025 04:14:24 -0400 Subject: [PATCH] Fix Windows CI path and set compiler --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed911c3..55f8e81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,10 @@ jobs: elif [[ "$RUNNER_OS" == "macOS" ]]; then brew install shellcheck elif [[ "$RUNNER_OS" == "Windows" ]]; then - choco install -y shellcheck + choco install -y shellcheck make mingw + echo "C:\\ProgramData\\mingw64\\mingw64\\bin" >> "$GITHUB_PATH" + echo "C:\\ProgramData\\chocolatey\\lib\\make\\tools\\GnuWin32\\bin" >> "$GITHUB_PATH" + echo "CC=gcc" >> "$GITHUB_ENV" fi - name: Lint Shell Scripts run: shellcheck tests/*.sh