1
0
Fork 0
cuberite-2a/CIbuild.sh

41 lines
869 B
Bash
Raw Normal View History

2014-05-10 12:03:36 +00:00
#!/usr/bin/env bash
2014-05-10 16:52:46 +00:00
set -e
2015-08-26 08:58:51 +00:00
export CUBERITE_BUILD_SERIES_NAME="Travis $CC $TRAVIS_CUBERITE_BUILD_TYPE"
export CUBERITE_BUILD_ID=$TRAVIS_JOB_NUMBER
export CUBERITE_BUILD_DATETIME=`date`
2014-05-10 12:03:36 +00:00
cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1;
2015-05-12 07:21:43 +00:00
echo "Building..."
2017-10-21 13:25:21 +00:00
cmake --build . -- -j 2;
ctest -j 2 -V;
echo "Testing..."
2017-10-21 13:25:21 +00:00
2015-08-26 08:58:51 +00:00
cd Server/;
touch apiCheckFailed.flag
2015-08-26 08:58:51 +00:00
if [ "$TRAVIS_CUBERITE_BUILD_TYPE" != "COVERAGE" ]; then
2018-01-14 15:08:08 +00:00
${CUBERITE_PATH} <<- EOF
load APIDump
apicheck
restart
stop
EOF
if [ -f ./NewlyUndocumented.lua ]; then
echo "ERROR: Newly undocumented API symbols found:"
cat ./NewlyUndocumented.lua
exit 1
fi
if [ -f ./DuplicateDocs.txt ]; then
echo "ERROR: API documentation has duplicate symbol warnings:"
cat ./DuplicateDocs.txt
exit 1
fi
if [ -f ./apiCheckFailed.flag ]; then
echo "ERROR: API check has failed with an unknown error"
exit 1
fi
fi