mirror of
https://github.com/QuasarApp/ELFIO.git
synced 2025-05-10 10:09:33 +00:00
Create .travis.yml (enables Travis CI)
This commit is contained in:
parent
155d986529
commit
9f0c760767
30
.travis.yml
Normal file
30
.travis.yml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
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
|
@ -1,4 +1,4 @@
|
|||||||
AM_CPPFLAGS = -I$(top_srcdir)
|
AM_CPPFLAGS = -I$(top_srcdir)/..
|
||||||
bin_PROGRAMS = ELFIOTest
|
bin_PROGRAMS = ELFIOTest
|
||||||
ELFIOTest_SOURCES = ELFIOTest.cpp ELFIOTest1.cpp
|
ELFIOTest_SOURCES = ELFIOTest.cpp ELFIOTest1.cpp
|
||||||
ELFIOTest_LDADD = -lboost_unit_test_framework
|
ELFIOTest_LDADD = -lboost_unit_test_framework
|
||||||
|
Loading…
x
Reference in New Issue
Block a user