diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-02 10:28:00 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-02 12:50:30 +0200 |
commit | 23b4a0521099e5f8fccbc7d38c93d24e0f1e963d (patch) | |
tree | ba82044bbf023426e0ddacc14ec8462a6d74a71a /.travis.yml | |
parent | 920f777fc83211a86f8d4595f2cda0af7b50a366 (diff) | |
download | curl-23b4a0521099e5f8fccbc7d38c93d24e0f1e963d.tar.gz |
travis: build osx with openssl too
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index b08cf1710..4fc9dcb67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,6 +31,9 @@ matrix: compiler: gcc env: BUILD_TYPE=debug - os: osx + compiler: gcc + env: BUILD_TYPE=debug CONFIGURE=--with-ssl=/usr/local/opt/openssl + - os: osx compiler: clang env: BUILD_TYPE=normal - os: linux @@ -76,7 +79,7 @@ script: fi - | if [ "$BUILD_TYPE" = "debug" ]; then - ./configure --enable-debug --enable-werror + ./configure --enable-debug --enable-werror $CONFIGURE make make TFLAGS=-n test-nonflaky fi |