From 06324a941a4d2b26ea4dddd6e3ca32530ffe41c4 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Tue, 20 May 2025 08:59:30 -0400 Subject: [PATCH] ci: do not install ninja or cmake for mac os runners, they are now part of the runner --- .github/actions/install-dependencies/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index b16163c8d..17c1a56e4 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -31,7 +31,7 @@ runs: if [ "$RUNNER_OS" == "Windows" ]; then echo "Window not supported yet" elif [ "$RUNNER_OS" == "macOS" ]; then - brew install cmake googletest ninja openssl --quiet + brew install googletest openssl --quiet elif [ "$RUNNER_OS" == "Linux" ]; then if [ ${{inputs.like}} == "debian" ]; then apt update -qqq > /dev/null