mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-07 01:45:08 -05:00
93fcab952b
* Combine client and server man pages. * Update unit test options and available databases in man page. * Add `--worldname` to man page. * Fix a bunch of places where `"Minetest"` was used directly instead of `PROJECT_NAME`. * Disable server build by default on all operating systems. * Make `ENABLE_FREETYPE` not fail if FreeType isn't found. * Enable LevelDB, Redis, and FreeType detection by default. * Remove the `VERSION_PATCH_ORIG` hack. * Add option to search for and use system JSONCPP. * Remove broken LuaJIT version detection. * Rename `DISABLE_LUAJIT` to `ENABLE_LUAJIT`. * Rename `minetest_*` variables in `version.{h,cpp}` to `g_*`. * Clean up style of CMake files.
43 lines
1.3 KiB
Bash
Executable File
43 lines
1.3 KiB
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [[ $PLATFORM == "Linux" ]]; then
|
|
mkdir -p travisbuild
|
|
cd travisbuild
|
|
CMAKE_FLAGS='-DCMAKE_BUILD_TYPE=Debug \
|
|
-DRUN_IN_PLACE=TRUE \
|
|
-DENABLE_GETTEXT=TRUE'
|
|
# Clang builds with FreeType fail on Travis
|
|
if [[ $CC == "clang" ]]; then
|
|
CMAKE_FLAGS+=' -DENABLE_FREETYPE=FALSE'
|
|
fi
|
|
cmake $CMAKE_FLAGS ..
|
|
make -j2
|
|
echo "Running unit tests."
|
|
../bin/minetest --run-unittests && exit 0
|
|
elif [[ $PLATFORM == Win* ]]; then
|
|
[[ $CC == "clang" ]] && exit 1 # Not supposed to happen
|
|
# 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.
|
|
OLDDIR=$(pwd)
|
|
cd ..
|
|
export EXISTING_MINETEST_DIR=$OLDDIR
|
|
export NO_MINETEST_GAME=1
|
|
if [[ $PLATFORM == "Win32" ]]; then
|
|
$OLDDIR/util/buildbot/buildwin32.sh travisbuild && exit 0
|
|
elif [[ $PLATFORM == "Win64" ]]; then
|
|
$OLDDIR/util/buildbot/buildwin64.sh travisbuild && exit 0
|
|
fi
|
|
else
|
|
echo "Unknown platform \"${PLATFORM}\"."
|
|
exit 1
|
|
fi
|
|
|