diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-09 11:43:29 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-10 12:34:46 +0100 |
commit | 275e02bdea73801f134519eed8c2473663823383 (patch) | |
tree | 3ac7bf151984f0acf3cd601bc898dc09ea3e019d /.azure-pipelines.yml | |
parent | c6deecd7e9ea7dd10de0934f8ec30952648aba2d (diff) | |
download | curl-275e02bdea73801f134519eed8c2473663823383.tar.gz |
azure: add libssh2 and cmake macos builds
Removed the macos libssh2 build from travis
Closes #4686
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index c57fc4b81..efe1d5742 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -77,12 +77,12 @@ jobs: - script: make test-nonflaky displayName: 'test' - - job: vanilla_macos + - job: macos_plain displayName: macos default pool: vmImage: 'macOS-latest' steps: - - script: brew update && brew install libtool autoconf automake nghttp2 + - script: brew update && brew install libtool autoconf automake nghttp2 pkg-config displayName: Install packages - script: ./buildconf && ./configure @@ -93,3 +93,31 @@ jobs: - script: make test-nonflaky displayName: 'test' + + - job: macos_libssh2 + displayName: macos libssh2 + pool: + vmImage: 'macOS-latest' + steps: + - script: brew update && brew install libtool autoconf automake nghttp2 pkg-config libssh2 + displayName: Install packages + + - script: ./buildconf && ./configure --with-libssh2 --enable-debug + displayName: 'Run configure' + + - script: make + displayName: 'make' + + - script: make test-nonflaky + displayName: 'test' + + - job: macos_cmake + displayName: macos cmake openssl + pool: + vmImage: 'macOS-latest' + steps: + - script: brew update && brew install libtool autoconf automake nghttp2 pkg-config cmake 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 + displayName: 'Run cmake' |