1
0
cuberite-2a/CIbuild.sh

12 lines
198 B
Bash
Raw Normal View History

2014-05-10 08:03:36 -04:00
#!/usr/bin/env bash
2014-05-10 12:52:46 -04:00
set -e
2014-05-10 08:03:36 -04:00
cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1;
make -j 2;
make -j 2 test;
2014-05-10 08:03:36 -04:00
cd MCServer/;
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" != "COVERAGE" ]
then echo stop | $MCSERVER_PATH;
fi