41 lines
586 B
YAML
41 lines
586 B
YAML
language:
|
|
- cpp
|
|
|
|
sudo: false
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- dev
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.9
|
|
|
|
install:
|
|
- pip install --user lutin
|
|
|
|
before_script:
|
|
- cd ..
|
|
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
|
|
- if [ "$CXX" == "g++" ]; then COMPILATOR_OPTION="--compilator-version=4.9"; else COMPILATOR_OPTION=""; fi
|
|
|
|
script:
|
|
- lutin -C -P -c$BUILDER $COMPILATOR_OPTION -mdebug -p date
|
|
|
|
notifications:
|
|
email:
|
|
- yui.heero@gmail.com
|
|
|