1language: cpp 2 3dist: bionic 4 5compiler: 6- gcc 7 8os: 9- linux 10 11branches: 12 only: 13 - master 14 15notifications: 16 email: false 17 18before_install: 19- sudo apt-get update -qq 20 21install: 22- sudo apt-get install libboost-test-dev 23 24script: 25- autoreconf -f -i 26- ./configure CXXFLAGS=--std=c++11 27- make 28 29- cd tests 30- autoreconf -f -i 31- ./configure CXXFLAGS=--std=c++11 32- make check 33 34- cd .. 35- mkdir build 36- cd build 37- cmake .. 38- cmake --build . 39