n2n/.travis.yml
Hamish Coleman 10b3464bd2
Linting for yaml files (#872)
* Add YAML file linting

* Add cmake-linux.yml lint and address its concerns
2021-10-25 01:37:21 +05:45

27 lines
399 B
YAML

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