mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-19 04:03:06 +08:00
Disable homebrew automatic dependency upgrades
Setting the HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 when using `brew install` will turn off the automatic dependency upgrade when using this command. Reference: https://docs.brew.sh/Manpage#install-options-formulacask-
This commit is contained in:
parent
c0a3369c96
commit
b719787aa6
4
.github/workflows/linux-build-and-test.yaml
vendored
4
.github/workflows/linux-build-and-test.yaml
vendored
@ -69,7 +69,9 @@ jobs:
|
||||
- name: Install macOS Dependencies
|
||||
if: runner.os == 'macOS'
|
||||
run: |
|
||||
brew install gawk
|
||||
# Disable the automatic dependency upgrade executed by `brew install`
|
||||
# https://docs.brew.sh/Manpage#install-options-formulacask-
|
||||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install gawk
|
||||
# Install perl modules after last Homebew call, since Homebrew can change the perl version
|
||||
sudo perl -MCPAN -e "CPAN::Shell->notest('install', 'IPC::Run')"
|
||||
sudo perl -MCPAN -e "CPAN::Shell->notest('install', 'Test::Most')"
|
||||
|
Loading…
x
Reference in New Issue
Block a user