audio/.travis.yml

46 lines
853 B
YAML
Raw Normal View History

language:
- cpp
sudo: false
2015-04-10 00:07:09 +02:00
compiler:
- clang
- gcc
os:
- linux
- osx
branches:
only:
- master
- dev
2015-04-10 00:07:09 +02:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
2015-04-10 00:07:09 +02:00
install:
- pip install --user lutin
before_script:
2015-04-10 00:07:09 +02:00
- rm -rf *
2015-06-15 22:11:54 +02:00
- git clone https://github.com/atria-soft/etk.git
2015-06-16 21:52:38 +02:00
- git clone https://github.com/generic-library/gtest-lutin.git --recursive
2015-06-15 22:11:54 +02:00
- 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
- if [ "$CXX" == "g++" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi
2015-04-10 00:07:09 +02:00
script:
- lutin -C -P -c$BUILDER $COMPILATOR_OPTION -mdebug -p audio-test
2015-06-16 21:52:38 +02:00
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio-test/usr/bin/audio-test
2015-04-10 00:07:09 +02:00
notifications:
email:
- yui.heero@gmail.com