File: .travis.yml

package info (click to toggle)
softflowd 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 680 kB
  • sloc: ansic: 5,321; sh: 634; perl: 196; makefile: 43
file content (19 lines) | stat: -rw-r--r-- 323 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: c

os:
  - linux
  - osx

compiler: gcc
sudo: false
addons:
  apt:
    packages:
      libpcap-dev

before_install:
  - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update         ; fi
  - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install libpcap; fi
  
before_script: autoreconf -if
script: ./configure && make