summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild/ci/github_actions/macos.sh19
1 files changed, 17 insertions, 2 deletions
diff --git a/build/ci/github_actions/macos.sh b/build/ci/github_actions/macos.sh
index e51574cb..ba72b4a7 100755
--- a/build/ci/github_actions/macos.sh
+++ b/build/ci/github_actions/macos.sh
@@ -1,9 +1,24 @@
#!/bin/sh
if [ "$1" = "prepare" ]
then
- set -x -e
+ set -x
+ brew uninstall openssl@1.0.2t > /dev/null
+ brew uninstall python@2.7.17 > /dev/null
+ brew untap local/openssl > /dev/null
+ brew untap local/python2 > /dev/null
brew update > /dev/null
- for pkg in autoconf automake libtool pkg-config cmake xz lz4 zstd
+ brew upgrade > /dev/null
+ set -x -e
+ for pkg in \
+ autoconf \
+ automake \
+ libtool \
+ pkg-config \
+ cmake \
+ xz \
+ lz4 \
+ zstd \
+ openssl
do
brew list $pkg > /dev/null && brew upgrade $pkg || brew install $pkg
done