audio/.travis.yml

36 lines
882 B
YAML
Raw Normal View History

2015-04-10 00:07:09 +02:00
language: cpp
compiler:
- clang
- gcc
os: linux
before_script:
- rm -rf *
2015-06-15 22:11:54 +02:00
- git clone https://github.com/atria-soft/etk.git
- git clone https://github.com/generic-library/gtest-lutin.git
- git clone https://github.com/musicdsp/audio.git
2015-04-10 00:07:09 +02:00
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq libstdc++-4.9-dev
- sudo apt-get install -qq g++-4.9
- sudo rm /usr/bin/gcc /usr/bin/g++
- sudo ln -s /usr/bin/gcc-4.9 /usr/bin/gcc
- sudo ln -s /usr/bin/g++-4.9 /usr/bin/g++
2015-05-27 11:12:26 +02:00
- sudo pip install lutin
2015-04-10 00:07:09 +02:00
script:
2015-05-27 11:12:26 +02:00
- lutin -C -P -c$BUILDER -mdebug -p audio_test
2015-04-10 00:07:09 +02:00
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio_test/usr/bin/audio_test
#send e-mail on compilation result:
notifications:
email:
- yui.heero@gmail.com