mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 09:21:50 -05:00
azure: add libssh2 and cmake macos builds
Removed the macos libssh2 build from travis Closes #4686
This commit is contained in:
parent
c6deecd7e9
commit
275e02bdea
@ -77,12 +77,12 @@ jobs:
|
|||||||
- script: make test-nonflaky
|
- script: make test-nonflaky
|
||||||
displayName: 'test'
|
displayName: 'test'
|
||||||
|
|
||||||
- job: vanilla_macos
|
- job: macos_plain
|
||||||
displayName: macos default
|
displayName: macos default
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'macOS-latest'
|
vmImage: 'macOS-latest'
|
||||||
steps:
|
steps:
|
||||||
- script: brew update && brew install libtool autoconf automake nghttp2
|
- script: brew update && brew install libtool autoconf automake nghttp2 pkg-config
|
||||||
displayName: Install packages
|
displayName: Install packages
|
||||||
|
|
||||||
- script: ./buildconf && ./configure
|
- script: ./buildconf && ./configure
|
||||||
@ -93,3 +93,31 @@ jobs:
|
|||||||
|
|
||||||
- script: make test-nonflaky
|
- script: make test-nonflaky
|
||||||
displayName: 'test'
|
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'
|
||||||
|
@ -245,9 +245,6 @@ matrix:
|
|||||||
env:
|
env:
|
||||||
- T=iconv
|
- T=iconv
|
||||||
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
|
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
|
||||||
- os: osx
|
|
||||||
compiler: gcc
|
|
||||||
env: T=debug C=--with-libssh2
|
|
||||||
- os: osx
|
- os: osx
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
env: T=debug C="--disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-pop3 --disable-rtmp --disable-rtsp --disable-scp --disable-sftp --disable-smb --disable-smtp --disable-telnet --disable-tftp --disable-unix-sockets --disable-shared --enable-debug --enable-maintainer-mode --without-brotli --without-gssapi --without-libidn2 --without-libmetalink --without-libpsl --without-librtmp --without-libssh2 --without-nghttp2 --without-ntlm-auth --without-ssl --without-zlib"
|
env: T=debug C="--disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-pop3 --disable-rtmp --disable-rtsp --disable-scp --disable-sftp --disable-smb --disable-smtp --disable-telnet --disable-tftp --disable-unix-sockets --disable-shared --enable-debug --enable-maintainer-mode --without-brotli --without-gssapi --without-libidn2 --without-libmetalink --without-libpsl --without-librtmp --without-libssh2 --without-nghttp2 --without-ntlm-auth --without-ssl --without-zlib"
|
||||||
|
@ -157,7 +157,7 @@ AC_SUBST(PKGADD_VENDOR)
|
|||||||
dnl
|
dnl
|
||||||
dnl initialize all the info variables
|
dnl initialize all the info variables
|
||||||
curl_ssl_msg="no (--with-{ssl,gnutls,nss,mbedtls,wolfssl,schannel,secure-transport,mesalink,amissl,bearssl} )"
|
curl_ssl_msg="no (--with-{ssl,gnutls,nss,mbedtls,wolfssl,schannel,secure-transport,mesalink,amissl,bearssl} )"
|
||||||
curl_ssh_msg="no (--with-libssh2)"
|
curl_ssh_msg="no (--with-{libssh,libssh2})"
|
||||||
curl_zlib_msg="no (--with-zlib)"
|
curl_zlib_msg="no (--with-zlib)"
|
||||||
curl_brotli_msg="no (--with-brotli)"
|
curl_brotli_msg="no (--with-brotli)"
|
||||||
curl_gss_msg="no (--with-gssapi)"
|
curl_gss_msg="no (--with-gssapi)"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user