File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bmon / .travis.yml
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 21 14:58:35 2019 UTC (4 years, 7 months ago) by misho
Branches: bmon, MAIN
CVS tags: v4_0p0, HEAD
bmon ver 4.0

language: c

os:
  - linux
  - osx

env:
  global:
    - secure: "C87Pgf5AVDoyQfm9MIv81g"

compiler:
  - gcc
  - clang

# container-based builds
sudo: false
addons:
  apt:
    packages:
    # packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
    - libconfuse-dev
    - libncurses5-dev
    - libnl-3-dev
    - libnl-route-3-dev
  coverity_scan:
    project:
      name: "tgraf/bmon"
      description: "bandwidth monitor"
    notification_email: tgraf@suug.ch
    build_command_prepend: "./autogen.sh && ./configure"
    build_command: "make -j2"
    branch_pattern: coverity_scan


install:
  - if [ "$TRAVIS_BRANCH" = "coverity_scan" ] && ! [ "$TRAVIS_OS_NAME" = "linux" -a "$CC" = "gcc" ]; then exit ; fi
  - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update > /dev/null && brew install confuse ; fi

script:
  - ./.travis/run.sh

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>