summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-08-02 14:16:31 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-08-02 14:17:51 +0200
commita79ab9341311773f1f3dc912a2f5557602ee9daa (patch)
treef1c8e6095138a37d7cb694796e01cdbd27e366f8
parent1767adf4399bb3be29121435e1bb1cc2bc05f7bf (diff)
downloadcurl-a79ab9341311773f1f3dc912a2f5557602ee9daa.tar.gz
travis: add osx build with darwinssl
-rw-r--r--.travis.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index c39071e7c..855b580fc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,10 +32,13 @@ matrix:
env: BUILD_TYPE=debug
- os: osx
compiler: gcc
- env: BUILD_TYPE=debug CONFIGURE=--with-ssl=/usr/local/opt/openssl
+ env: BUILD_TYPE=debug C=--with-ssl=/usr/local/opt/openssl
- os: osx
compiler: gcc
- env: BUILD_TYPE=debug CONFIGURE=--with-ssl=/usr/local/opt/libressl
+ env: BUILD_TYPE=debug C=--with-ssl=/usr/local/opt/libressl
+ - os: osx
+ compiler: clang
+ env: BUILD_TYPE=debug C="--without-ssl --with-darwinssl"
- os: osx
compiler: clang
env: BUILD_TYPE=normal
@@ -82,13 +85,13 @@ script:
fi
- |
if [ "$BUILD_TYPE" = "debug" ]; then
- ./configure --enable-debug --enable-werror $CONFIGURE
+ ./configure --enable-debug --enable-werror $C
make
make TFLAGS=-n test-nonflaky
fi
- |
if [ "$BUILD_TYPE" = "normal" ]; then
- ./configure --enable-warnings --enable-werror
+ ./configure --enable-warnings --enable-werror $C
make
make test-nonflaky
fi