esvg/.travis.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

language:
- cpp
sudo: false
2015-05-20 21:29:12 +02:00
os:
- linux
- osx
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-05-20 21:29:12 +02:00
before_script:
- 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-17 21:25:57 +02:00
- git clone https://github.com/atria-soft/etk.git
- git clone https://github.com/atria-soft/exml.git
- git clone https://github.com/atria-soft/libagg.git
- git clone https://github.com/generic-library/gtest-lutin.git --recursive
- git clone https://github.com/generic-library/freetype-lutin.git --recursive
2015-05-20 21:29:12 +02:00
- 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
script:
2015-09-14 21:11:04 +02:00
- lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV -p esvg
2015-05-20 21:29:12 +02:00
notifications:
email:
- yui.heero@gmail.com