summaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: 14dad4df496358f292804641b6ccea7a1996a7e8 (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:
  - MCSERVER_BUILD_TYPE=RELEASE MCSERVER_PATH=./MCServer
  - MCSERVER_BUILD_TYPE=DEBUG MCSERVER_PATH=./MCServer_debug
  - MCSERVER_BUILD_TYPE=RELEASE MCSERVER_FORCE32=1 MCSERVER_PATH=./MCServer
  - MCSERVER_BUILD_TYPE=DEBUG MCSERVER_FORCE32=1 MCSERVER_PATH=./MCServer_debug

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