Fixed wrong path in debug mode
parent
6b153a5014
commit
c67e008a4e
10
.travis.yml
10
.travis.yml
|
@ -3,13 +3,13 @@ compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
# Build MCServer
|
# Build MCServer
|
||||||
script: cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1 && make -j 2 && cd MCServer/ && (echo stop | ./MCServer)
|
script: cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1 && make -j 2 && cd MCServer/ && (echo stop | $MCSERVER_PATH)
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- MCSERVER_BUILD_TYPE=RELEASE
|
- MCSERVER_BUILD_TYPE=RELEASE MCSERVER_PATH=./MCServer
|
||||||
- MCSERVER_BUILD_TYPE=DEBUG
|
- MCSERVER_BUILD_TYPE=DEBUG MCSERVER_PATH=./MCServer_debug
|
||||||
- MCSERVER_BUILD_TYPE=RELEASE MCSERVER_FORCE32=1
|
- MCSERVER_BUILD_TYPE=RELEASE MCSERVER_FORCE32=1 MCSERVER_PATH=./MCServer
|
||||||
- MCSERVER_BUILD_TYPE=DEBUG MCSERVER_FORCE32=1
|
- MCSERVER_BUILD_TYPE=DEBUG MCSERVER_FORCE32=1 MCSERVER_PATH=./MCServer_debug
|
||||||
|
|
||||||
# Notification Settings
|
# Notification Settings
|
||||||
notifications:
|
notifications:
|
||||||
|
|
Loading…
Reference in New Issue