X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=.travis.yml;h=9434f877d67f1352ab646ed8b65da8f2b8f09c82;hp=abdfe0807e03b926e088303ae7caf4e0aad66f42;hb=ea241958501b65d2fc70ecc1642bd1af70a0db9d;hpb=45c6e23c978da0b23df5e5a9a3c2e631b79ba497 diff --git a/.travis.yml b/.travis.yml index abdfe0807e..9434f877d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,11 @@ language: c cache: ccache +before_install: + - if [ -n "$COVERALLS" ]; then + pip install --user cpp-coveralls; + fi; + addons: apt: packages: @@ -9,7 +14,6 @@ addons: - gcc-5 - binutils-mingw-w64 - gcc-mingw-w64 - - wine sources: - llvm-toolchain-precise-3.6 - ubuntu-toolchain-r-test @@ -23,26 +27,32 @@ compiler: - gcc env: - - CONFIG_OPTS="" + - CONFIG_OPTS="" DESTDIR="_install" - CONFIG_OPTS="--debug no-shared enable-crypto-mdebug enable-rc5 enable-md2" - - CONFIG_OPTS="--strict-warnings no-shared" BUILDONLY="yes" - 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" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="-fsanitize=address no-shared" + env: CONFIG_OPTS="enable-msan" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared no-asm -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2 -fno-sanitize=alignment" + env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method -fno-sanitize=alignment" - os: linux - compiler: gcc-5 - env: CONFIG_OPTS="no-shared -fsanitize=address" + compiler: clang-3.6 + env: CONFIG_OPTS="no-asm enable-asan enable-rc5 enable-md2" - os: linux compiler: gcc-5 - env: CONFIG_OPTS="no-shared no-asm -fno-sanitize-recover -DPEDANTIC -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2" + 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" @@ -56,36 +66,64 @@ matrix: compiler: gcc before_script: - - sh .travis-create-release.sh $TRAVIS_OS_NAME - - tar -xvzf _srcdist.tar.gz - - mkdir _build; - - cd _build; + - if [ -n "$DESTDIR" ]; then + sh .travis-create-release.sh $TRAVIS_OS_NAME; + tar -xvzf _srcdist.tar.gz; + mkdir _build; + cd _build; + srcdir=../_srcdist; + top=..; + else + srcdir=.; + top=.; + fi - if [ "$CC" == i686-w64-mingw32-gcc ]; then export CROSS_COMPILE=${CC%%gcc}; unset CC; - ../_srcdir/Configure mingw $CONFIG_OPTS -Wno-pedantic-ms-format; + $srcdir/Configure mingw $CONFIG_OPTS -Wno-pedantic-ms-format; elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then export CROSS_COMPILE=${CC%%gcc}; unset CC; - ../_srcdir/Configure mingw64 $CONFIG_OPTS -Wno-pedantic-ms-format; + $srcdir/Configure mingw64 $CONFIG_OPTS -Wno-pedantic-ms-format; else 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 .. + - cd $top script: - - cd _build; - - make + - if [ -z "$BUILDONLY" ]; then + make="make -s"; + else + make="make"; + fi + - if [ -n "$DESTDIR" ]; then + cd _build; + top=..; + else + top=.; + fi + - $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 - - cd .. + - if [ -n "$DESTDIR" ]; then + mkdir "../$DESTDIR"; + $make install install_docs DESTDIR="../$DESTDIR"; + fi + - cd $top + +after_success: + - if [ -n "$COVERALLS" ]; then + coveralls -b . --gcov-options '\-lp'; + fi; notifications: email: