2014-05-10 08:03:36 -04:00
|
|
|
#!/usr/bin/env bash
|
2014-05-10 12:52:46 -04:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2015-08-26 04:58:51 -04: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-09-10 11:12:49 -04:00
|
|
|
|
2015-07-21 18:40:13 -04:00
|
|
|
if [ "$CXX" == "g++" ]; then
|
|
|
|
# This is a temporary workaround to allow the identification of GCC-4.8 by CMake, required for C++11 features
|
|
|
|
# Travis Docker containers don't allow sudo, which update-alternatives needs, and it seems no alternative to this command is provided, hence:
|
|
|
|
export CXX="/usr/bin/g++-4.8"
|
|
|
|
fi
|
2014-05-10 08:03:36 -04:00
|
|
|
cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1;
|
2015-05-12 03:21:43 -04:00
|
|
|
|
|
|
|
echo "Building..."
|
2014-05-10 08:03:36 -04:00
|
|
|
make -j 2;
|
2015-03-18 09:10:30 -04:00
|
|
|
make -j 2 test ARGS="-V";
|
2015-09-27 04:24:50 -04:00
|
|
|
|
|
|
|
echo "Testing..."
|
2015-08-26 04:58:51 -04:00
|
|
|
cd Server/;
|
|
|
|
if [ "$TRAVIS_CUBERITE_BUILD_TYPE" != "COVERAGE" ]; then
|
2015-09-27 04:24:50 -04: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
|
2014-05-17 08:04:40 -04:00
|
|
|
fi
|