[DEV] update travis file
This commit is contained in:
parent
41e9dfe891
commit
9055235cf7
54
.travis.yml
Normal file
54
.travis.yml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# language type:
|
||||||
|
language:
|
||||||
|
- cpp
|
||||||
|
- Objective-c
|
||||||
|
|
||||||
|
# compilator system:
|
||||||
|
compiler:
|
||||||
|
- clang
|
||||||
|
- gcc
|
||||||
|
|
||||||
|
# build branch requested
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- dev
|
||||||
|
|
||||||
|
# previous actions:
|
||||||
|
before_script:
|
||||||
|
- cd ..
|
||||||
|
- 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/ege
|
||||||
|
- cd ..
|
||||||
|
- pwd
|
||||||
|
- ls -l
|
||||||
|
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
|
||||||
|
|
||||||
|
install:
|
||||||
|
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||||
|
- sudo apt-get update -qq
|
||||||
|
- sudo apt-get install -qq libstdc++-4.9-dev
|
||||||
|
- sudo apt-get install -qq g++-4.9
|
||||||
|
- sudo rm /usr/bin/gcc /usr/bin/g++
|
||||||
|
- sudo ln -s /usr/bin/gcc-4.9 /usr/bin/gcc
|
||||||
|
- sudo ln -s /usr/bin/g++-4.9 /usr/bin/g++
|
||||||
|
- sudo pip install lutin
|
||||||
|
|
||||||
|
# build sequence with Lutin :
|
||||||
|
script:
|
||||||
|
- lutin -C -P -c$BUILDER -mdebug -p ege egeCameraPosition egeCollision egeDoubleView egeMeshCreator egeRayTest
|
||||||
|
|
||||||
|
#send e-mail on compilation result:
|
||||||
|
notifications:
|
||||||
|
email:
|
||||||
|
- yui.heero@gmail.com
|
@ -3,6 +3,8 @@ Ege
|
|||||||
|
|
||||||
`Ege` (Ewol Game Engine) is a FREE software.
|
`Ege` (Ewol Game Engine) is a FREE software.
|
||||||
|
|
||||||
|
[](https://travis-ci.org/atria-soft/ege)
|
||||||
|
|
||||||
Install blender exporter emf file
|
Install blender exporter emf file
|
||||||
=================================
|
=================================
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ def create(target):
|
|||||||
])
|
])
|
||||||
myModule.copy_folder('data/ParticuleMesh.*','')
|
myModule.copy_folder('data/ParticuleMesh.*','')
|
||||||
# name of the dependency
|
# name of the dependency
|
||||||
myModule.add_module_depend(['ewol', 'bullet'])
|
myModule.add_module_depend(['ewol', 'bullet-physics'])
|
||||||
myModule.compile_flags('c++', [
|
myModule.compile_flags('c++', [
|
||||||
'-Wno-write-strings',
|
'-Wno-write-strings',
|
||||||
'-Wmissing-field-initializers',
|
'-Wmissing-field-initializers',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user