mirror of
https://github.com/libarchive/libarchive.git
synced 2026-01-31 03:45:41 +00:00
macOS CI is reporting some warnings about unavailable versions of some utilities. I'll take a stab at fixing those...
22 lines
347 B
Bash
Executable File
22 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$1" = "prepare" ]
|
|
then
|
|
set -x -e
|
|
#Uncommenting these adds a full minute to the CI time
|
|
#brew update > /dev/null
|
|
#brew upgrade > /dev/null
|
|
|
|
# This does an upgrade if the package is already installed
|
|
brew install \
|
|
autoconf \
|
|
automake \
|
|
libtool \
|
|
pkg-config \
|
|
cmake \
|
|
xz \
|
|
lz4 \
|
|
zstd \
|
|
libxml2 \
|
|
openssl
|
|
fi
|