mirror of
https://github.com/serge1/ELFIO.git
synced 2024-11-02 11:27:03 +00:00
31 lines
398 B
YAML
31 lines
398 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
|
||
|
- cd ELFIOTest; ./configure CXXFLAGS=--std=c++11
|
||
|
- cd ELFIOTest; make check
|