ci: do not install ninja or cmake for mac os runners, they are now part of the runner

This commit is contained in:
sithlord48
2025-05-20 08:59:30 -04:00
committed by Nick Bolton
parent 8dd9e17e72
commit 06324a941a

View File

@ -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