[DEV] add trevis separate compilator

This commit is contained in:
Edouard DUPIN 2014-09-09 07:28:21 +02:00
parent cce65ddccd
commit 9c5031a6ee

View File

@ -1,6 +1,11 @@
# language type: # language type:
language: cpp language: cpp
# compilator system:
compiler:
- clang
- gcc
# build branch requested # build branch requested
branches: branches:
only: only:
@ -8,12 +13,14 @@ branches:
- dev - dev
# previous actions: # previous actions:
before_script: git submodule init before_script:
before_script: git submodule update - git submodule init
- git submodule update
# build sequence with Lutin : # build sequence with Lutin :
script: ./build/lutin.py -cclang -mdebug -p ewol script:
script: ./build/lutin.py -cgcc -mdebug -p ewol - if [ "$CXX" == "clang++" ]; then ./build/lutin.py -cclang -mdebug -p ewol; fi
- if [ "$CXX" == "g++" ]; then script: ./build/lutin.py -cgcc -mdebug -p ewol; fi
#send e-mail on compilation result: #send e-mail on compilation result:
notifications: notifications: