ci/macos: silence brew warnings

This commit is contained in:
Benoit Pierre
2024-06-01 07:08:33 +02:00
committed by Frans de Jonge
parent 1105f83557
commit 5dfdbd06eb

View File

@@ -106,13 +106,13 @@ jobs:
)
# Lua 5.1 is disabled, so we need to work around that:
# - fetch all packages
brew fetch "${packages[@]}"
brew fetch --formula "${packages[@]}"
# - disable auto-updates
export HOMEBREW_NO_AUTO_UPDATE=1
# - install lua@5.1 from cache
brew install "$(brew --cache lua@5.1)"
brew install --formula --quiet "$(brew --cache lua@5.1)"
# - and install the rest
brew install "${packages[@]}"
brew install --formula --quiet "${packages[@]}"
- name: Update PATH
run: >