From 28c690074c0eb31c080029639f73618b67aebc91 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 17 Jul 2025 08:23:11 -0400 Subject: [PATCH] ci: force ninja update on windows --- .github/actions/install-dependencies/action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 2dfe1ba4b..0e0712a41 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -27,9 +27,10 @@ runs: steps: - name: Install Depends - if: ${{ runner.os != 'Windows' }} run: | - if [ "$RUNNER_OS" == "macOS" ]; then + if [ "$RUNNER_OS" == "Windows" ]; then + choco install ninja + elif [ "$RUNNER_OS" == "macOS" ]; then brew install googletest openssl --quiet elif [ "$RUNNER_OS" == "Linux" ]; then if [ ${{inputs.like}} == "debian" ]; then