2014-12-05 15:54:19 +01:00
|
|
|
#!/bin/bash -e
|
2016-10-15 17:59:23 +02:00
|
|
|
. util/travis/common.sh
|
|
|
|
|
|
|
|
needs_compile || exit 0
|
2014-12-05 15:54:19 +01:00
|
|
|
|
2017-03-25 19:12:18 +01:00
|
|
|
function perform_lint() {
|
|
|
|
CLANG_FORMAT=clang-format-3.9
|
|
|
|
if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then
|
|
|
|
# Get list of every file modified in this pull request
|
|
|
|
files_to_lint="$(git diff --name-only --diff-filter=ACMRTUXB $TRAVIS_COMMIT_RANGE | grep '^src/[^.]*[.]\(cpp\|h\)$' | egrep -v '^src/(gmp|lua|jsoncpp)/' || true)"
|
|
|
|
else
|
|
|
|
# Check everything for branch pushes
|
|
|
|
files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h' | egrep -v '^src/(gmp|lua|jsoncpp)/')"
|
|
|
|
fi
|
|
|
|
|
2017-03-26 11:29:21 +02:00
|
|
|
local errorcount=0
|
2017-03-25 19:12:18 +01:00
|
|
|
local fail=0
|
|
|
|
for f in ${files_to_lint}; do
|
|
|
|
d=$(diff -u "$f" <(${CLANG_FORMAT} "$f") || true)
|
|
|
|
if ! [ -z "$d" ]; then
|
2017-03-26 11:29:21 +02:00
|
|
|
((errorcount++))
|
2017-03-25 19:12:18 +01:00
|
|
|
printf "The file %s is not compliant with the coding style:\n%s\n" "$f" "$d"
|
2017-03-26 11:29:21 +02:00
|
|
|
if [ ${errorcount} -gt 50 ]; then
|
|
|
|
printf "Too many errors encountered previously, this diff is hidden.\n"
|
|
|
|
else
|
|
|
|
printf "%s\n" "$d"
|
|
|
|
fi
|
2017-03-25 19:12:18 +01:00
|
|
|
# Disable build failure at this moment as we need to have a complete MT source whitelist to check
|
|
|
|
fail=0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$fail" = 1 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if [[ "$LINT" == "1" ]]; then
|
|
|
|
# Lint with exit CI
|
|
|
|
perform_lint
|
|
|
|
fi
|
|
|
|
|
2016-01-29 15:15:58 +01:00
|
|
|
if [[ $PLATFORM == "Unix" ]]; then
|
2014-12-05 15:54:19 +01:00
|
|
|
mkdir -p travisbuild
|
2016-03-19 06:21:58 +01:00
|
|
|
cd travisbuild || exit 1
|
2017-03-25 19:12:18 +01:00
|
|
|
|
2016-03-19 06:21:58 +01:00
|
|
|
CMAKE_FLAGS=''
|
2016-10-05 22:17:22 +02:00
|
|
|
if [[ $COMPILER == "g++-6" ]]; then
|
|
|
|
export CC=gcc-6
|
|
|
|
export CXX=g++-6
|
|
|
|
fi
|
2017-03-25 19:12:18 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
# Clang builds with FreeType fail on Travis
|
|
|
|
if [[ $CC == "clang" ]]; then
|
|
|
|
CMAKE_FLAGS+=' -DENABLE_FREETYPE=FALSE'
|
|
|
|
fi
|
2017-03-25 19:12:18 +01:00
|
|
|
|
2016-01-29 15:15:58 +01:00
|
|
|
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
|
|
|
|
CMAKE_FLAGS+=' -DCUSTOM_GETTEXT_PATH=/usr/local/opt/gettext'
|
|
|
|
fi
|
2017-03-25 19:12:18 +01:00
|
|
|
|
2016-03-19 06:21:58 +01:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug \
|
|
|
|
-DRUN_IN_PLACE=TRUE \
|
|
|
|
-DENABLE_GETTEXT=TRUE \
|
2017-01-04 14:36:51 +01:00
|
|
|
-DBUILD_SERVER=TRUE \
|
2016-03-19 06:21:58 +01:00
|
|
|
$CMAKE_FLAGS ..
|
2014-12-05 15:54:19 +01:00
|
|
|
make -j2
|
2017-03-06 20:34:02 +01:00
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
echo "Running unit tests."
|
2017-03-06 20:34:02 +01:00
|
|
|
CMD="../bin/minetest --run-unittests"
|
|
|
|
if [[ "$VALGRIND" == "1" ]]; then
|
|
|
|
valgrind --leak-check=full --leak-check-heuristics=all --undef-value-errors=no --error-exitcode=9 ${CMD} && exit 0
|
|
|
|
else
|
|
|
|
${CMD} && exit 0
|
|
|
|
fi
|
|
|
|
|
2015-02-28 00:05:29 +01:00
|
|
|
elif [[ $PLATFORM == Win* ]]; then
|
|
|
|
[[ $CC == "clang" ]] && exit 1 # Not supposed to happen
|
2014-12-05 15:54:19 +01:00
|
|
|
# We need to have our build directory outside of the minetest directory because
|
|
|
|
# CMake will otherwise get very very confused with symlinks and complain that
|
|
|
|
# something is not a subdirectory of something even if it actually is.
|
|
|
|
# e.g.:
|
|
|
|
# /home/travis/minetest/minetest/travisbuild/minetest
|
|
|
|
# \/ \/ \/
|
|
|
|
# /home/travis/minetest/minetest/travisbuild/minetest/travisbuild/minetest
|
|
|
|
# \/ \/ \/
|
|
|
|
# /home/travis/minetest/minetest/travisbuild/minetest/travisbuild/minetest/travisbuild/minetest
|
|
|
|
# You get the idea.
|
2015-02-28 00:05:29 +01:00
|
|
|
OLDDIR=$(pwd)
|
2014-12-05 15:54:19 +01:00
|
|
|
cd ..
|
2015-02-28 00:05:29 +01:00
|
|
|
export EXISTING_MINETEST_DIR=$OLDDIR
|
|
|
|
export NO_MINETEST_GAME=1
|
|
|
|
if [[ $PLATFORM == "Win32" ]]; then
|
2016-03-19 06:21:58 +01:00
|
|
|
"$OLDDIR/util/buildbot/buildwin32.sh" travisbuild && exit 0
|
2015-02-28 00:05:29 +01:00
|
|
|
elif [[ $PLATFORM == "Win64" ]]; then
|
2016-03-19 06:21:58 +01:00
|
|
|
"$OLDDIR/util/buildbot/buildwin64.sh" travisbuild && exit 0
|
2015-02-28 00:05:29 +01:00
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Unknown platform \"${PLATFORM}\"."
|
|
|
|
exit 1
|
2014-12-05 15:54:19 +01:00
|
|
|
fi
|
2015-02-28 00:05:29 +01:00
|
|
|
|