X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=.travis.yml;h=d044309b2968d05636a9de34a8b2bd718c12713c;hp=8e98850148abd0339a9ea38f528507cb08689a5a;hb=42e22c7c4f16d647fc586264c1cd30a18801e3d0;hpb=ad0a0a3a99828f1be722053ee6327813a6f6d789 diff --git a/.travis.yml b/.travis.yml index 8e98850148..d044309b29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,9 @@ language: c cache: ccache before_install: - - pip install --user cpp-coveralls + - if [ -n "$COVERALLS" ]; then + pip install --user cpp-coveralls; + fi; addons: apt: @@ -12,7 +14,6 @@ addons: - gcc-5 - binutils-mingw-w64 - gcc-mingw-w64 - - wine sources: - llvm-toolchain-precise-3.6 - ubuntu-toolchain-r-test @@ -30,27 +31,28 @@ 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: - os: linux compiler: gcc - 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" + env: CONFIG_OPTS="--debug --coverage no-asm enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-nextprotoneg enable-weak-ssl-ciphers" COVERALLS="yes" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared enable-asan" + env: CONFIG_OPTS="enable-msan" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared enable-msan" + env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method enable-nextprotoneg -fno-sanitize=alignment" - 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: 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-stdio" BUILDONLY="yes" - os: linux compiler: i686-w64-mingw32-gcc env: CONFIG_OPTS="no-pic" @@ -85,36 +87,42 @@ 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 + sudo apt-get -yq --no-install-suggests --no-install-recommends --force-yes install wine; 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: