Browse Source

Added travis build file

pull/500/head
Luca Deri 4 years ago
parent
commit
64e393a663
  1. 25
      .travis.yml

25
.travis.yml

@ -0,0 +1,25 @@
language: c++
dist: xenial
compiler:
- clang
- gcc
install:
- sudo apt-get update || true
- sudo apt-get install build-essential
before_script:
- git clone https://github.com/ntop/n2n.git; cd n2n; ./autogen.sh; make; cd ..
- ./autogen.sh
script:
- ./configure
- make
notifications:
email:
recipients:
- deri@ntop.org
on_success: never
on_failure: always
Loading…
Cancel
Save