2015-08-24 23:55:27 +02:00
|
|
|
language:
|
|
|
|
- cpp
|
|
|
|
|
|
|
|
sudo: false
|
2015-06-15 19:27:55 +02:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- dev
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.9
|
|
|
|
|
|
|
|
install:
|
|
|
|
- pip install --user lutin
|
|
|
|
|
2015-09-14 21:11:04 +02:00
|
|
|
env:
|
|
|
|
- CONF=debug BOARD=Linux BUILDER=clang GCOV=
|
|
|
|
- CONF=release BOARD=Linux BUILDER=clang GCOV=
|
|
|
|
- CONF=debug BOARD=Linux BUILDER=gcc GCOV=
|
|
|
|
- CONF=release BOARD=Linux BUILDER=gcc GCOV=
|
|
|
|
- CONF=debug BOARD=Linux BUILDER=gcc GCOV=--gcov
|
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
before_script:
|
2015-06-15 19:27:55 +02:00
|
|
|
- cd ..
|
2015-09-14 21:11:04 +02:00
|
|
|
- wget http://atria-soft.com/ci/coverage_send.py
|
|
|
|
- wget http://atria-soft.com/ci/test_send.py
|
|
|
|
- wget http://atria-soft.com/ci/warning_send.py
|
2015-06-15 19:27:55 +02:00
|
|
|
- git clone https://github.com/atria-soft/etk.git
|
|
|
|
- git clone https://github.com/musicdsp/audio.git
|
|
|
|
- pwd
|
|
|
|
- ls -l
|
2015-09-14 21:11:04 +02:00
|
|
|
- if [ "$BUILDER" == "gcc" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi
|
2015-06-15 19:27:55 +02:00
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
script:
|
2015-09-14 21:11:04 +02:00
|
|
|
- lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV -p audio-orchestra
|
|
|
|
# - ./out/Linux_x86_64/$CONF/staging/$BUILDER/audio-orchestra/usr/bin/audio-orchestra -l6
|
2015-06-15 19:27:55 +02:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
- yui.heero@gmail.com
|
|
|
|
|