mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
0ea2e3463d
--HG-- branch : coverity
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
language: c
|
|
|
|
git:
|
|
depth: 3
|
|
|
|
env:
|
|
global:
|
|
# The next declaration 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
|
|
|
|
before_install:
|
|
- echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
|
|
- zlib1g-dev
|
|
- libtomcrypt-dev
|
|
- libtommath-dev
|
|
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
|