# HG changeset patch # User Matt Johnston # Date 1458055240 -28800 # Node ID 770e14154da387c17d613fff9e29967e8bebbb10 # Parent 506f7681d0f848b19b72ad216ee39d30779f4e78# Parent c8f52c19e949b344fc2aec165bf96340a8d8fe53 merge diff -r c8f52c19e949 -r 770e14154da3 .travis.yml --- a/.travis.yml Tue Mar 15 23:20:01 2016 +0800 +++ b/.travis.yml Tue Mar 15 23:20:40 2016 +0800 @@ -2,28 +2,9 @@ os: - linux - - osx - -env: - matrix: - - BUNDLEDLIBTOM=--disable-bundled-libtom WEXTRAFLAGS=-Werror - - BUNDLEDLIBTOM=--enable-bundled-libtom - - MULTI=1 - - NOWRITEV=1 - -# TODO: remove this section when libtomcrypt compiles on OSX: https://github.com/libtom/libtomcrypt/issues/82 -matrix: - exclude: - - os: osx - env: BUNDLEDLIBTOM=--disable-bundled-libtom WEXTRAFLAGS=-Werror - - os: osx - env: MULTI=1 - - os: osx - env: NOWRITEV=1 compiler: - gcc - - clang # container-based builds sudo: false @@ -32,24 +13,25 @@ packages: # packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise - zlib1g-dev - - libtomcrypt-dev - - libtommath-dev - - -before_install: - - if [ "$CC" = "clang" ]; then WEXTRAFLAGS="$WEXTRAFLAGS -Wno-error=incompatible-library-redeclaration" ; fi # workaround - -install: - - if [ "$TRAVIS_OS_NAME" = "osx" -a "$BUNDLEDLIBTOM" != "--enable-bundled-libtom" ]; then brew update > /dev/null && brew install libtomcrypt libtommath ; fi script: - - autoconf && autoheader && ./configure "$BUNDLEDLIBTOM" CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS" --prefix="$HOME/inst" - - if [ "$NOWRITEV" = "1" ]; then sed -i s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi + - autoconf && autoheader && ./configure CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix="$HOME/inst" - make -j3 install -after_success: - - ~/inst/bin/dropbearkey -t rsa -f testrsa - - ~/inst/bin/dropbearkey -t dss -f testdss - - ~/inst/bin/dropbearkey -t ecdsa -f testec256 -s 256 - - ~/inst/bin/dropbearkey -t ecdsa -f testec384 -s 384 - - ~/inst/bin/dropbearkey -t ecdsa -f testec521 -s 521 +env: + global: + # The next declration is the encrypted COVERITY_SCAN_TOKEN, created + # via the "travis encrypt" command using the project repo's public key + - secure: "F4rKQrHK/u58vPo3F9+x0WYXAeMFJvvtH9BIGZqx9yw8bUnL+gk0Ge9wnHHTXRcgCTqoc7B35uMS5njpH+Su/esVjrLAq85f/AmQctlRpmApwGK9LyxkIvx3UJN0nqfeeDXA90/8FUZ+n/qnCydXmYCEgqSaBCNydDxW1oqYUIc=" + - BUNDLEDLIBTOM=--enable-bundled-libtom + - MULTI=1 + +addons: + coverity_scan: + project: + name: "mkj/dropbear" + description: "Dropbear SSH" + notification_email: matt@ucc.asn.au + build_command_prepend: autoconf && autoheader && ./configure --enable-bundled-libtom CFLAGS='-O2 -Wall -Wno-pointer-sign' --prefix=$HOME/inst + build_command: make MULTI=1 + branch_pattern: coverity