From 4124068c47b9f0f8d45ed41dacb4bd8a1a2c00d0 Mon Sep 17 00:00:00 2001 From: Shauren Date: Fri, 29 Aug 2025 23:29:47 +0200 Subject: CI/GitHub: Only install packages if fully missing --- .github/workflows/macos-arm-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos-arm-build.yml b/.github/workflows/macos-arm-build.yml index f5fef954b1c..998abfe6b6b 100644 --- a/.github/workflows/macos-arm-build.yml +++ b/.github/workflows/macos-arm-build.yml @@ -23,7 +23,9 @@ jobs: run: | brew update brew uninstall openssl@1.1 - brew install mysql openssl readline cmake boost coreutils ninja + for pkg in mysql openssl readline cmake boost coreutils ninja; do + brew ls --versions $pkg || brew install $pkg + done brew config - name: Check some deps -- cgit v1.2.3