Added travis build file

This commit is contained in:
Luca Deri 2020-11-11 10:20:39 +01:00
parent 2a46674a9a
commit 64e393a663

25
.travis.yml Normal file
View File

@ -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