diff options
author | worktycho <work.tycho@gmail.com> | 2014-03-07 21:03:05 +0100 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2014-03-07 21:03:05 +0100 |
commit | c67e008a4e3c19a79f82af4d430e43e6ea0eabbf (patch) | |
tree | bd2c84b696bf76b72171041cb357368a07290bbe /.travis.yml | |
parent | Move env code part 1 (diff) | |
download | cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.tar cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.tar.gz cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.tar.bz2 cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.tar.lz cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.tar.xz cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.tar.zst cuberite-c67e008a4e3c19a79f82af4d430e43e6ea0eabbf.zip |
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index a12ca55e0..14dad4df4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,13 +3,13 @@ compiler: - gcc - clang # 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: - - MCSERVER_BUILD_TYPE=RELEASE - - MCSERVER_BUILD_TYPE=DEBUG - - MCSERVER_BUILD_TYPE=RELEASE MCSERVER_FORCE32=1 - - MCSERVER_BUILD_TYPE=DEBUG MCSERVER_FORCE32=1 + - 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: |