mirror of
https://github.com/clearml/dropbear
synced 2025-06-26 18:17:32 +00:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
language: c
|
|
|
|
os:
|
|
- linux
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
# container-based builds
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
|
|
- zlib1g-dev
|
|
- libtomcrypt-dev
|
|
- libtommath-dev
|
|
|
|
install:
|
|
- autoconf
|
|
- autoheader
|
|
- ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
|
|
- if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi
|
|
- make -j3
|
|
# avoid concurrent install, osx/freebsd is racey (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208093)
|
|
- make install
|
|
|
|
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
|
|
|
|
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
|