ELFIO/.travis.yml
2020-06-06 22:26:12 +03:00

32 lines
371 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 ELFIOTest
- autoreconf -f -i
- ./configure CXXFLAGS=--std=c++11
- make check