X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=.travis.yml;h=f15ca6bf7ebd781c76be394cc4fdeb9f7d497e57;hp=8e98850148abd0339a9ea38f528507cb08689a5a;hb=e82e2186e93e9a678dd8c0c5ba084d21d27d4d62;hpb=ad0a0a3a99828f1be722053ee6327813a6f6d789 diff --git a/.travis.yml b/.travis.yml index 8e98850148..f15ca6bf7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,7 @@ env: - CONFIG_OPTS="--debug no-shared enable-crypto-mdebug enable-rc5 enable-md2" - CONFIG_OPTS="no-pic --strict-warnings" BUILDONLY="yes" - CONFIG_OPTS="no-engine no-shared --strict-warnings" BUILDONLY="yes" + - CONFIG_OPTS="no-stdio --strict-warnings" BUILDONLY="yes" matrix: include: @@ -38,25 +39,34 @@ matrix: env: CONFIG_OPTS="--debug --coverage no-asm enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-weak-ssl-ciphers" COVERALLS="yes" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared enable-asan" + env: CONFIG_OPTS="enable-asan" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared enable-msan" + env: CONFIG_OPTS="enable-msan" - os: linux compiler: clang-3.6 env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method -fno-sanitize=alignment" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared no-asm enable-asan enable-rc5 enable-md2" + env: CONFIG_OPTS="no-asm enable-asan enable-rc5 enable-md2" + - os: linux + compiler: clang-3.6 + env: CONFIG_OPTS="no-stdio" - os: linux compiler: gcc-5 env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -DPEDANTIC" - os: linux compiler: i686-w64-mingw32-gcc env: CONFIG_OPTS="no-pic" + - os: linux + compiler: i686-w64-mingw32-gcc + env: CONFIG_OPTS="no-stdio" - os: linux compiler: x86_64-w64-mingw32-gcc env: CONFIG_OPTS="no-pic" + - os: linux + compiler: x86_64-w64-mingw32-gcc + env: CONFIG_OPTS="no-stdio" exclude: - os: linux compiler: clang @@ -85,36 +95,41 @@ before_script: if which ccache >/dev/null && [ "$CC" != clang-3.6 ]; then CC="ccache $CC"; fi; - $srcdir/config $CONFIG_OPTS; + $srcdir/config -v $CONFIG_OPTS; fi - cd $top script: + - if [ -z "$BUILDONLY" ]; then + make="make -s"; + else + make="make"; + fi - if [ -n "$DESTDIR" ]; then cd _build; top=..; else top=.; fi - - make update - - make + - $make update + - $make - if [ -z "$BUILDONLY" ]; then if [ -n "$CROSS_COMPILE" ]; then export EXE_SHELL="wine" WINEPREFIX=`pwd`; fi; HARNESS_VERBOSE=yes make test; else - make build_tests; + $make build_tests; fi - if [ -n "$DESTDIR" ]; then mkdir "../$DESTDIR"; - make install install_docs DESTDIR="../$DESTDIR"; + $make install install_docs DESTDIR="../$DESTDIR"; fi - cd $top after_success: - if [ -n "$COVERALLS" ]; then - coveralls -b .; + coveralls -b . --gcov-options '\-lp'; fi; notifications: