diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-16 09:59:53 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-16 10:11:49 +0100 |
commit | 5eda54c0f08ecf4e456dc3d4495af5e6d90fc5c6 (patch) | |
tree | d5670b244aaf46b12d726abc04a3101f8b76f5fd /.azure-pipelines.yml | |
parent | b0a9e3c28c3c6bac8e201fcf327de5ba26a92a38 (diff) | |
download | curl-5eda54c0f08ecf4e456dc3d4495af5e6d90fc5c6.tar.gz |
azure: the macos cmake doesn't need to install cmake
Error: cmake 3.15.5 is already installed
To upgrade to 3.16.1, run `brew upgrade cmake`.
Closes #4723
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index ac0b0cc3e..93f8cd067 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -141,7 +141,7 @@ jobs: pool: vmImage: 'macOS-latest' steps: - - script: brew update && brew install libtool autoconf automake nghttp2 pkg-config cmake openssl + - script: brew update && brew install libtool autoconf automake nghttp2 pkg-config openssl displayName: Install packages - script: cmake -H. -Bbuild -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON && cmake --build build |