# HG changeset patch # User Matt Johnston # Date 1518838157 -28800 # Node ID eb4c7052f51d4bc8ad39e7beab0c80cee5d70dd1 # Parent 3520d7c2536315a0b24d7e871affabb190d3cb0b# Parent 47f36d8565cfb856f184acc128accfe7d451c17c merge coverity up to date diff -r 47f36d8565cf -r eb4c7052f51d .travis.yml --- a/.travis.yml Sat Feb 17 04:27:37 2018 +0100 +++ b/.travis.yml Sat Feb 17 11:29:17 2018 +0800 @@ -1,25 +1,10 @@ language: c -git: - depth: 3 +os: + - linux -matrix: - include: - # subsequent matrix options use these first settings - - os: linux - compiler: gcc - env: WEXTRAFLAGS=-Werror - - env: MULTI=1 WEXTRAFLAGS=-Werror - # libtom has some warnings, so no WEXTRAFLAGS - - env: BUNDLEDLIBTOM=--enable-bundled-libtom WEXTRAFLAGS="" - - env: NOWRITEV=1 WEXTRAFLAGS=-Werror - # libtomcrypt 1.18.1 fixes clang problems, distro doesn't have that yet - - os: linux - compiler: clang - env: BUNDLEDLIBTOM=--enable-bundled-libtom WEXTRAFLAGS="" - - os: osx - compiler: clang - env: WEXTRAFLAGS="" +compiler: + - gcc # container-based builds sudo: false @@ -28,29 +13,32 @@ 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 script: - - autoconf && autoheader && ./configure "$BUNDLEDLIBTOM" CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS" --prefix="$HOME/inst" - - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi + - autoconf && autoheader && ./configure CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix="$HOME/inst" - make -j3 # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093) - make 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 branches: only: - master - coverity -