ELFIO/.travis.yml
2020-08-19 22:09:30 -07:00

39 lines
432 B
YAML

language: cpp
dist: bionic
compiler:
- gcc
os:
- linux
branches:
only:
- master
notifications:
email: false
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install libboost-test-dev
script:
- autoreconf -f -i
- ./configure CXXFLAGS=--std=c++11
- make
- cd tests
- autoreconf -f -i
- ./configure CXXFLAGS=--std=c++11
- make check
- cd ..
- mkdir build
- cd build
- cmake ..
- cmake --build .