summaryrefslogtreecommitdiff
path: root/azure/macos
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-06-18 16:25:16 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-06-18 17:12:23 +0200
commit090bddb93488b6bcf411e970afe77d96f86f4ac8 (patch)
tree59df6e633da01fb834a712f83f7caf5e0ded3a49 /azure/macos
parentea3a317659b7c7418dabb4d78ae88e74d810812b (diff)
downloadphp-git-090bddb93488b6bcf411e970afe77d96f86f4ac8.tar.gz
Update libzip on macos
We need libzip 1.7.1, because libzip 1.7.0 is broken. Closes GH-5737.
Diffstat (limited to 'azure/macos')
-rw-r--r--azure/macos/brew.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/azure/macos/brew.yml b/azure/macos/brew.yml
index df4c5a532d..02cb736d02 100644
--- a/azure/macos/brew.yml
+++ b/azure/macos/brew.yml
@@ -2,6 +2,8 @@ parameters:
packages: ''
steps:
+ - script: brew update
+ displayName: 'Update Homebrew'
- script: |
brew install pkg-config \
autoconf \
@@ -23,11 +25,12 @@ steps:
zlib \
t1lib \
gd \
- libzip \
gmp \
tidyp \
libxml2 \
libxslt \
postgresql
+ # Make sure we don't get broken libzip 1.7.0
+ brew upgrade libzip
brew link icu4c gettext --force
displayName: 'Install Build Dependencies'