ELFIO/.travis.yml

39 lines
432 B
YAML
Raw Normal View History

2020-05-26 11:21:00 +00:00
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
2020-08-20 05:09:30 +00:00
2020-08-10 05:23:41 +00:00
- cd tests
- autoreconf -f -i
- ./configure CXXFLAGS=--std=c++11
- make check
2020-08-20 05:09:30 +00:00
- cd ..
- mkdir build
- cd build
- cmake ..
- cmake --build .