etk/.travis.yml

36 lines
782 B
YAML
Raw Normal View History

2015-05-20 21:13:48 +02:00
language: cpp
compiler:
- clang
- gcc
os:
- linux
- osx
before_script:
- cd ..
2015-06-17 21:25:57 +02:00
- git clone https://github.com/generic-library/gtest-lutin.git --recursive
2015-05-20 21:13:48 +02:00
- 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 g++-4.9
- sudo apt-get install -qq libstdc++-4.9-dev
- 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
script:
2015-06-17 21:25:57 +02:00
- lutin -C -P -c$BUILDER -mdebug -p etk-test
- ./out/Linux_x86_64/debug/staging/$BUILDER/etk-test/usr/bin/etk-test -l6
2015-05-20 21:13:48 +02:00
notifications:
email:
- yui.heero@gmail.com