summaryrefslogtreecommitdiffstats
path: root/travisbuild.sh
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2021-07-10 22:58:33 +0200
committerAlexander Harkness <me@bearbin.net>2021-07-10 22:59:18 +0200
commit4bb359f06796cfd93374b2ed6d2c7d07ff86749c (patch)
tree9923ac2c4d4219563ad7e143542d670d82db1d09 /travisbuild.sh
parentChorus fruit teleport (#5259) (diff)
downloadcuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar
cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.gz
cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.bz2
cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.lz
cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.xz
cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.tar.zst
cuberite-4bb359f06796cfd93374b2ed6d2c7d07ff86749c.zip
Diffstat (limited to 'travisbuild.sh')
-rwxr-xr-xtravisbuild.sh71
1 files changed, 0 insertions, 71 deletions
diff --git a/travisbuild.sh b/travisbuild.sh
deleted file mode 100755
index 712f4e2c4..000000000
--- a/travisbuild.sh
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-export CUBERITE_BUILD_SERIES_NAME="Travis $CC $TRAVIS_CUBERITE_BUILD_TYPE"
-export CUBERITE_BUILD_ID=$TRAVIS_JOB_NUMBER
-export CUBERITE_BUILD_DATETIME=`date`
-
-# Use ccache if available
-if [ `which ccache` ]; then
- # Re-run compile on pre-processed sources on cache miss
- # "It's slower actually, but clang builds fail without it."
- export CCACHE_CPP2=true
-
- # Tell CMake of ccache's existence
- CACHE_ARGS="-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache"
-
- echo "Using ccache installed at $(which ccache)"
- ccache --max-size=1G
- ccache --zero-stats
-fi
-
-workdir="$CC"_"$TRAVIS_CUBERITE_BUILD_TYPE"
-mkdir "$workdir"
-cd "$workdir"
-
-# Work around a Clang + ccache issue with failing builds by disabling
-# precompiled headers. Turn off LTO for faster build speeds
-cmake .. -DCMAKE_BUILD_TYPE=${TRAVIS_CUBERITE_BUILD_TYPE} \
- -DBUILD_TOOLS=Yes \
- -DPRECOMPILE_HEADERS=No \
- -DSELF_TEST=Yes \
- -DUNITY_BUILDS=${TRAVIS_CUBERITE_UNITY_BUILDS-Yes} \
- -DWHOLE_PROGRAM_OPTIMISATION=No \
- ${CACHE_ARGS};
-
-echo "Building..."
-cmake --build . --parallel 3;
-
-if [ `which ccache` ]; then
- echo "Built with ccache, outputting cache stats..."
- ccache --show-stats
-fi
-
-echo "Testing..."
-ctest --output-on-failure --parallel 2;
-
-cd Server/;
-touch apiCheckFailed.flag
-if [ "$TRAVIS_CUBERITE_BUILD_TYPE" != "COVERAGE" ]; then
- ./Cuberite <<- 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