summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-12-13 15:15:56 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-12-13 22:47:28 +0100
commit26fedc4182f7a26fc63b1daf347b468bf7c6861d (patch)
tree81fcc004a46cf325660b57bd09f7b5a3f7b235e6
parent29ca9fc596c808c0ea716681af4743914f4003f5 (diff)
downloadcurl-26fedc4182f7a26fc63b1daf347b468bf7c6861d.tar.gz
azure: add a torture test on mac
-rw-r--r--.azure-pipelines.yml20
1 files changed, 19 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 2e9d6a307..e71e9ab9c 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -110,7 +110,7 @@ jobs:
- script: brew update && brew install libtool autoconf automake nghttp2 pkg-config
displayName: Install packages
- - script: ./buildconf && ./configure
+ - script: ./buildconf && ./configure --enable-debug --enable-werror
displayName: 'Run configure'
- script: make
@@ -146,3 +146,21 @@ jobs:
- 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'
+
+ - job: macos_torture
+ displayName: macos torture
+ pool:
+ vmImage: 'macOS-latest'
+ steps:
+ - script: brew update && brew install libtool autoconf automake nghttp2 pkg-config
+ displayName: Install packages
+
+ - script: ./buildconf && ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-alt-svc
+ displayName: 'Run configure'
+
+ - script: make
+ displayName: 'make'
+
+ - script: make "TFLAGS=-n -t --shallow=35 '!FTP'" test-nonflaky
+ displayName: 'torture test'
+