diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-08-29 23:29:47 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-08-29 23:29:47 +0200 |
commit | 4124068c47b9f0f8d45ed41dacb4bd8a1a2c00d0 (patch) | |
tree | c42075351d9e4dd0bd5f353162cb6afc8388fd76 /.github/workflows | |
parent | b248e059064031fdbb75a863913d7d5eb461db41 (diff) |
CI/GitHub: Only install packages if fully missing
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/macos-arm-build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
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 |