2016-10-24 21:55:23 +02:00
|
|
|
language: cpp
|
2015-08-24 23:55:27 +02:00
|
|
|
|
2016-10-24 21:55:23 +02:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2015-06-15 19:27:55 +02:00
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- dev
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.9
|
2016-10-24 21:55:23 +02:00
|
|
|
- expect
|
|
|
|
- binutils-mingw-w64-x86-64 # 64bit MinGW
|
|
|
|
- gcc-mingw-w64-x86-64
|
|
|
|
- g++-mingw-w64-x86-64
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
env: CONF=release BUILDER=gcc TARGET=Linux TAG=Linux COMPILATOR_OPTION="--compilator-version=4.9" GCOV=--gcov
|
|
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
|
|
env: CONF=debug BUILDER=clang TARGET=Linux
|
|
|
|
compiler: clang
|
|
|
|
- os: linux
|
|
|
|
env: CONF=release BUILDER=gcc TARGET=Windows TAG=Mingw
|
|
|
|
compiler: x86_64-w64-mingw32-gcc
|
|
|
|
- os: linux
|
|
|
|
env: CONF=release BUILDER=gcc TARGET=Android TAG=Android DISABLE_PACKAGE=-p
|
|
|
|
compiler: gcc
|
|
|
|
- os: osx
|
|
|
|
env: CONF=release BUILDER=clang TARGET=MacOs TAG=MacOs
|
|
|
|
compiler: clang
|
|
|
|
- os: osx
|
|
|
|
env: CONF=release BUILDER=clang TARGET=IOs TAG=IOs
|
|
|
|
compiler: clang
|
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
|
|
|
|
install:
|
2016-10-24 21:55:23 +02:00
|
|
|
- cd ..
|
2015-08-24 23:55:27 +02:00
|
|
|
- pip install --user lutin
|
2016-10-24 21:55:23 +02:00
|
|
|
- if [ "$TAG" == "Android" ]; then
|
|
|
|
git clone --depth 1 --branch master https://github.com/HeeroYui/android-download-tool;
|
|
|
|
./android-download-tool/dl-android.sh;
|
|
|
|
fi
|
|
|
|
- git clone --depth 1 --branch master https://github.com/atria-soft/ci.git
|
|
|
|
- cd -
|
2015-09-14 21:11:04 +02:00
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
before_script:
|
2015-06-15 19:27:55 +02:00
|
|
|
- cd ..
|
2016-10-24 21:55:23 +02:00
|
|
|
- git clone https://github.com/atria-soft/etk.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/atria-soft/elog.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/atria-soft/ememory.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/atria-soft/echrono.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/atria-soft/ethread.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/atria-soft/ejson.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/atria-soft/jvm-basics.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/musicdsp/audio.git -b $TRAVIS_BRANCH
|
|
|
|
- git clone https://github.com/generic-library/gtest-lutin.git --recursive
|
|
|
|
- git clone https://github.com/generic-library/z-lutin.git --recursive
|
2015-06-15 19:27:55 +02:00
|
|
|
- pwd
|
|
|
|
- ls -l
|
2016-10-24 21:55:23 +02:00
|
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
|
|
export PATH=$PATH:/Users/travis/Library/Python/2.7/bin/;
|
|
|
|
fi
|
|
|
|
- ./ci/build_send.py --tag=$TAG --status=START;
|
|
|
|
|
2015-06-15 19:27:55 +02:00
|
|
|
|
2015-08-24 23:55:27 +02:00
|
|
|
script:
|
2016-10-24 21:55:23 +02:00
|
|
|
- lutin -w -j4 -C -P -t$TARGET -c $BUILDER $COMPILATOR_OPTION $BUS -m $CONF $GCOV $DISABLE_PACKAGE audio-orchestra; STATUS=$?
|
|
|
|
- ./ci/build_send.py --tag=$TAG --status="$STATUS";
|
|
|
|
|
|
|
|
after_script:
|
|
|
|
- if [ "$GCOV" != "" ]; then
|
|
|
|
./ci/warning_send.py --find-path ./out/Linux_x86_64/$CONF/build/$BUILDER/audio-orchestra/;
|
|
|
|
fi
|
|
|
|
#- lutin -w -j4 -C -P -t$TARGET -c $BUILDER $COMPILATOR_OPTION $BUS -m $CONF $GCOV $DISABLE_PACKAGE audio-orchestra-test?run:--elog-level=3 | tee out_test.txt
|
|
|
|
#- if [ "$GCOV" != "" ]; then
|
|
|
|
# ./ci/test_send.py --file=out_test.txt;
|
|
|
|
# lutin -C -P -t $TARGET -c $BUILDER $COMPILATOR_OPTION $BUS -m $CONF -p audio-orchestra?gcov;
|
|
|
|
# ./ci/coverage_send.py --json=out/Linux_x86_64/$CONF/build/$BUILDER/audio-orchestra/audio-orchestra_coverage.json;
|
|
|
|
# fi
|
2015-06-15 19:27:55 +02:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
- yui.heero@gmail.com
|
|
|
|
|
2016-10-24 21:55:23 +02:00
|
|
|
|
|
|
|
|