mirror of
https://github.com/curl/curl.git
synced 2026-05-30 06:17:28 +03:00
parent
af271ce9b9
commit
2b7ce3f56d
1 changed files with 7 additions and 4 deletions
11
.travis.yml
11
.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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue