[CI] correct travis clone

This commit is contained in:
Edouard DUPIN 2015-06-16 21:52:38 +02:00
parent 0d563efbb8
commit caa5b9e2e2
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ os: linux
before_script: before_script:
- rm -rf * - rm -rf *
- git clone https://github.com/atria-soft/etk.git - git clone https://github.com/atria-soft/etk.git
- git clone https://github.com/generic-library/gtest-lutin.git - git clone https://github.com/generic-library/gtest-lutin.git --recursive
- git clone https://github.com/musicdsp/audio.git - git clone https://github.com/musicdsp/audio.git
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi - if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
@ -24,8 +24,8 @@ install:
- sudo pip install lutin - sudo pip install lutin
script: script:
- lutin -C -P -c$BUILDER -mdebug -p audio_test - lutin -C -P -c$BUILDER -mdebug -p audio-test
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio_test/usr/bin/audio_test - ./out/Linux_x86_64/debug/staging/$BUILDER/audio-test/usr/bin/audio-test
#send e-mail on compilation result: #send e-mail on compilation result:
notifications: notifications:

View File

@ -3,11 +3,11 @@ import lutin.module as module
import lutin.tools as tools import lutin.tools as tools
def get_desc(): def get_desc():
return "audio_test : Basic audio types test" return "Basic audio types test"
def create(target): def create(target):
myModule = module.Module(__file__, 'audio_test', 'BINARY') myModule = module.Module(__file__, 'audio-test', 'BINARY')
myModule.add_src_file([ myModule.add_src_file([
'test/debug.cpp', 'test/debug.cpp',
'test/base.cpp', 'test/base.cpp',