comparison .travis.yml @ 1580:7f2be495dff6 coverity

merge coverity
author Matt Johnston <matt@ucc.asn.au>
date Sun, 04 Mar 2018 15:07:09 +0800
parents eb4c7052f51d fdadac70ee67
children 96e4c9b2cc00
comparison
equal deleted inserted replaced
1545:0b991dec7ab9 1580:7f2be495dff6
11 addons: 11 addons:
12 apt: 12 apt:
13 packages: 13 packages:
14 # packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise 14 # packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
15 - zlib1g-dev 15 - zlib1g-dev
16 - libtomcrypt-dev
17 - libtommath-dev
16 18
17 script: 19 install:
18 - autoconf && autoheader && ./configure CFLAGS="-O2 -Wall -Wno-pointer-sign" --prefix="$HOME/inst" 20 - autoconf
21 - autoheader
22 - ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst"
23 - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi
19 - make -j3 24 - make -j3
20 # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093) 25 # avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093)
21 - make install 26 - make install
22 27
23 env: 28 env:
24 global: 29 global:
25 # The next declration is the encrypted COVERITY_SCAN_TOKEN, created 30 # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
26 # via the "travis encrypt" command using the project repo's public key 31 # via the "travis encrypt" command using the project repo's public key
27 - secure: "F4rKQrHK/u58vPo3F9+x0WYXAeMFJvvtH9BIGZqx9yw8bUnL+gk0Ge9wnHHTXRcgCTqoc7B35uMS5njpH+Su/esVjrLAq85f/AmQctlRpmApwGK9LyxkIvx3UJN0nqfeeDXA90/8FUZ+n/qnCydXmYCEgqSaBCNydDxW1oqYUIc=" 32 - secure: "F4rKQrHK/u58vPo3F9+x0WYXAeMFJvvtH9BIGZqx9yw8bUnL+gk0Ge9wnHHTXRcgCTqoc7B35uMS5njpH+Su/esVjrLAq85f/AmQctlRpmApwGK9LyxkIvx3UJN0nqfeeDXA90/8FUZ+n/qnCydXmYCEgqSaBCNydDxW1oqYUIc="
28 - BUNDLEDLIBTOM=--enable-bundled-libtom 33 - BUNDLEDLIBTOM=--enable-bundled-libtom
29 - MULTI=1 34 - MULTI=1
30 35