68 lines
1.9 KiB
YAML
68 lines
1.9 KiB
YAML
language:
|
|
- cpp
|
|
- Objective-c
|
|
|
|
sudo: false
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- dev
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.9
|
|
|
|
install:
|
|
- pip install --user lutin
|
|
|
|
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
|
|
|
|
before_script:
|
|
- cd ..
|
|
- 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
|
|
- mkdir bin
|
|
- curl https://storage.googleapis.com/git-repo-downloads/repo > bin/repo
|
|
- chmod a+x bin/repo
|
|
- git config --global user.email "travis@travis.com"
|
|
- git config --global user.name "Travis"
|
|
- git config --global color.ui "auto"
|
|
- git config --global core.editor "vi"
|
|
- mkdir WORKING_DIRECTORY
|
|
- cd WORKING_DIRECTORY
|
|
- ../bin/repo init -u https://github.com/atria-soft/manifest.git
|
|
- ../bin/repo sync -j8
|
|
- rm -rf atria-soft/ewol
|
|
- cd ..
|
|
- pwd
|
|
- ls -l
|
|
- if [ "$BUILDER" == "gcc" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi
|
|
|
|
script:
|
|
- lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV -p gale gale-sample-basic
|
|
|
|
after_script:
|
|
- if [ "$GCOV" != "" ]; then python ./warning_send.py --find-path ./out/Linux_x86_64/$CONF/build/$BUILDER/gale/ ; fi
|
|
- ./out/Linux_x86_64/$CONF/staging/$BUILDER/gale-sample-basic/usr/bin/gale-sample-basic -l6 | tee out_test.txt
|
|
#- if [ "$GCOV" != "" ]; then python ./test_send.py --file=out_test.txt; fi
|
|
#- if [ "$GCOV" != "" ]; then lutin -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF -p gale?gcov; fi
|
|
#- if [ "$GCOV" != "" ]; then python ./coverage_send.py --json=out/Linux_x86_64/$CONF/build/$BUILDER/gale/gale_coverage.json; fi
|
|
|
|
notifications:
|
|
email:
|
|
- yui.heero@gmail.com
|