1
0
Fork 0
cuberite-2a/.travis.yml

29 lines
694 B
YAML
Raw Normal View History

2013-12-19 20:07:58 +00:00
language: cpp
2014-05-10 12:03:36 +00:00
2015-05-23 12:45:05 +00:00
compiler:
- clang
- gcc
2014-05-10 12:03:36 +00:00
2015-05-23 12:45:05 +00:00
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
2014-11-23 14:21:44 +00:00
install:
- sudo apt-get install -qq g++-4.8
2015-05-23 12:45:05 +00:00
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
# lua, needed for style checking and possibly later on for bindings generation
- sudo apt-get install -qq lua5.1
2014-11-23 14:21:44 +00:00
2014-05-10 12:12:01 +00:00
script: ./CIbuild.sh
2014-05-10 12:03:36 +00:00
env:
2014-03-10 20:52:13 +00:00
- TRAVIS_MCSERVER_BUILD_TYPE=RELEASE MCSERVER_PATH=./MCServer
- TRAVIS_MCSERVER_BUILD_TYPE=DEBUG MCSERVER_PATH=./MCServer_debug
2013-12-19 20:42:40 +00:00
notifications:
email:
on_success: change
on_failure: always