]> granicus.if.org Git - curl/commitdiff
travis: add osx build with darwinssl
authorDaniel Stenberg <daniel@haxx.se>
Thu, 3 Aug 2017 22:04:39 +0000 (00:04 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 3 Aug 2017 22:07:08 +0000 (00:07 +0200)
Closes #1706

.travis.yml

index c39071e7cafcbe2f8d4c7eaf092dff1566c86e3c..855b580fc8c8ea65e77da03ee191eff04bd0d57b 100644 (file)
@@ -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