Skip to content

Commit

Permalink
Try further simplifying the brew operations
Browse files Browse the repository at this point in the history
  • Loading branch information
kientzle committed Jul 5, 2024
1 parent 64b181d commit eaab479
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions build/ci/github_actions/macos.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/bin/sh
if [ "$1" = "prepare" ]
then
set -x
set -x -e
#Uncommenting these adds a full minute to the CI time
#brew update > /dev/null
#brew upgrade > /dev/null
set -x -e
for pkg in \

# This does an upgrade if the package is already installed
brew install \
autoconf \
automake \
libtool \
Expand All @@ -16,7 +18,4 @@ then
zstd \
libxml2 \
openssl
do
brew list $pkg > /dev/null && brew upgrade $pkg || brew install $pkg
done
fi

0 comments on commit eaab479

Please sign in to comment.