summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: a12ca55e00270a251fac60e6426e69c8382eb505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: cpp
compiler:
  - gcc
  - clang
# Build MCServer
script: cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1 && make -j 2 && cd MCServer/ && (echo stop | ./MCServer)

env:
  - MCSERVER_BUILD_TYPE=RELEASE
  - MCSERVER_BUILD_TYPE=DEBUG
  - MCSERVER_BUILD_TYPE=RELEASE MCSERVER_FORCE32=1
  - MCSERVER_BUILD_TYPE=DEBUG MCSERVER_FORCE32=1

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