mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
396 B
25 lines
396 B
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
|
|
|