summaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: 0ab25ae3b019f83e05b7c102e4c877e50d42e8d2 (plain) (tree)
1
2
3
4
5
6
7
8



             
                
                                                                                                          

    



                                                                                               





                       
language: cpp
compiler:
  - gcc
  - clang
# Build MCServer
script: cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1 && make -j 2 && cd MCServer/ && (echo stop | $MCSERVER_PATH)

env:
  - TRAVIS_MCSERVER_BUILD_TYPE=RELEASE MCSERVER_PATH=./MCServer
  - TRAVIS_MCSERVER_BUILD_TYPE=DEBUG   MCSERVER_PATH=./MCServer_debug
  - TRAVIS_MCSERVER_BUILD_TYPE=RELEASE TRAVIS_MCSERVER_FORCE32=1 MCSERVER_PATH=./MCServer
  - TRAVIS_MCSERVER_BUILD_TYPE=DEBUG   TRAVIS_MCSERVER_FORCE32=1 MCSERVER_PATH=./MCServer_debug

# Notification Settings
notifications:
  email:
    on_success: change
    on_failure: always