From: Vincent Bernat Date: Sat, 27 Jun 2020 11:24:27 +0000 (+0200) Subject: ci: use "brew bundle" instead of "brew install" X-Git-Tag: 1.0.6~6^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d561e0c9cd55c7d68e751cde9e8d703844e5430d;p=thirdparty%2Flldpd.git ci: use "brew bundle" instead of "brew install" Otherwise, when a dependency is already installed and not up-to-date, we get an error. --- diff --git a/tests/ci/install.sh b/tests/ci/install.sh index 51c693d0..a8ed1679 100755 --- a/tests/ci/install.sh +++ b/tests/ci/install.sh @@ -5,7 +5,11 @@ set -e case "$(uname -s)" in Darwin) brew update - brew install libtool libxml2 check + brew bundle --file=- <<-EOS +brew "libtool" +brew "libxml2" +brew "check" +EOS ;; Linux) sudo apt-get -qqy update