2016-05-12 04:59:07 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-04-10 03:33:32 +02:00
|
|
|
set -e
|
|
|
|
PS1="$"
|
|
|
|
basedir="$(cd "$1" && pwd -P)"
|
|
|
|
workdir="$basedir/work"
|
|
|
|
minecraftversion=$(cat "$workdir/BuildData/info.json" | grep minecraftVersion | cut -d '"' -f 4)
|
|
|
|
decompiledir="$workdir/$minecraftversion"
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# FUNCTIONS
|
|
|
|
#
|
|
|
|
. $basedir/scripts/functions.sh
|
|
|
|
|
|
|
|
updateTest() {
|
|
|
|
paperstash
|
|
|
|
git reset --hard origin/master
|
|
|
|
paperunstash
|
|
|
|
}
|
|
|
|
|
|
|
|
papertestdir="${PAPER_TEST_DIR:-$workdir/test-server}"
|
|
|
|
|
|
|
|
mkdir -p "$papertestdir"
|
|
|
|
cd "$papertestdir"
|
|
|
|
|
|
|
|
#
|
|
|
|
# SKELETON CHECK
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ ! -d .git ]; then
|
|
|
|
git init
|
|
|
|
git remote add origin ${PAPER_TEST_SKELETON:-https://github.com/PaperMC/PaperTestServer}
|
|
|
|
git fetch origin
|
|
|
|
updateTest
|
|
|
|
elif [ "$2" == "update" ] || [ "$3" == "update" ]; then
|
|
|
|
updateTest
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f server.properties ] || [ ! -d plugins ]; then
|
|
|
|
echo " "
|
|
|
|
echo " Checking out Test Server Skeleton"
|
|
|
|
updateTest
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# EULA CHECK
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ -z "$(grep true eula.txt 2>/dev/null)" ]; then
|
|
|
|
echo
|
|
|
|
echo "$(color 32) It appears you have not agreed to Mojangs EULA yet! Press $(color 1 33)y$(colorend) $(color 32)to confirm agreement to"
|
|
|
|
read -p " Mojangs EULA found at:$(color 1 32) https://account.mojang.com/documents/minecraft_eula $(colorend) " -n 1 -r
|
|
|
|
echo ""
|
|
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
|
|
|
echo "$(color 1 31)Aborted$(colorend)"
|
|
|
|
exit;
|
|
|
|
fi
|
|
|
|
echo "eula=true" > eula.txt
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# JAR CHECK
|
|
|
|
#
|
|
|
|
|
|
|
|
jar="$basedir/Paper-Server/target/paper-${minecraftversion}.jar"
|
|
|
|
if [ ! -f "$jar" ] || [ "$2" == "build" ] || [ "$3" == "build" ]; then
|
|
|
|
(
|
|
|
|
echo "Building Paper"
|
|
|
|
cd "$basedir"
|
|
|
|
./paper patch
|
|
|
|
mvn clean install
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# JVM FLAGS
|
|
|
|
#
|
|
|
|
|
|
|
|
baseargs="-server -Xmx${PAPER_TEST_MEMORY:-2G} -Dfile.encoding=UTF-8 -XX:MaxGCPauseMillis=50 -XX:+UseG1GC"
|
|
|
|
baseargs="$baseargs -XX:+UnlockExperimentalVMOptions -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=70 "
|
2016-04-17 20:32:55 +02:00
|
|
|
baseargs="$baseargs -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"
|
2016-04-10 03:33:32 +02:00
|
|
|
|
|
|
|
cmd="java ${PAPER_TEST_BASE_JVM_ARGS:-$baseargs} ${PAPER_TEST_EXTRA_JVM_ARGS} -jar $jar"
|
2016-05-12 04:59:07 +02:00
|
|
|
screen_command="screen -DURS papertest $cmd"
|
|
|
|
tmux_command="tmux new-session -A -s Paper -n 'Paper Test' -c '$(pwd)' '$cmd'"
|
2016-04-10 03:33:32 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# MULTIPLEXER CHOICE
|
|
|
|
#
|
|
|
|
|
2016-05-12 04:59:07 +02:00
|
|
|
multiplex=${PAPER_TEST_MULTIPLEXER}
|
2016-04-10 03:33:32 +02:00
|
|
|
|
2016-05-12 04:59:07 +02:00
|
|
|
if [ "$multiplex" == "screen" ]; then
|
|
|
|
if command -v "screen" >/dev/null 2>&1 ; then
|
|
|
|
cmd="$screen_command"
|
|
|
|
else
|
|
|
|
echo "screen not found"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
elif [ "$multiplex" == "tmux" ] ; then
|
|
|
|
if command -v "tmux" >/dev/null 2>&1 ; then
|
|
|
|
cmd="$tmux_command"
|
|
|
|
else
|
|
|
|
echo "tmux not found"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-04-10 03:33:32 +02:00
|
|
|
else
|
2016-05-12 04:59:07 +02:00
|
|
|
if command -v "screen" >/dev/null 2>&1 ; then
|
|
|
|
cmd="$screen_command"
|
|
|
|
elif command -v "tmux" >/dev/null 2>&1 ; then
|
|
|
|
cmd="$tmux_command"
|
|
|
|
else
|
|
|
|
echo "screen or tmux not found - it is strongly recommended to install either"
|
|
|
|
echo "No terminal multiplexer will be used"
|
|
|
|
fi
|
2016-04-10 03:33:32 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# START / LOG
|
|
|
|
#
|
|
|
|
|
2016-04-10 03:46:09 +02:00
|
|
|
if [ ! -z "$PAPER_TEST_COMMAND_WRAPPER" ]; then
|
2016-05-12 04:59:07 +02:00
|
|
|
$PAPER_TEST_COMMAND_WRAPPER $cmd
|
2016-04-10 03:46:09 +02:00
|
|
|
else
|
2016-05-12 04:59:07 +02:00
|
|
|
echo "Running command: $cmd"
|
|
|
|
echo "In directory: $(pwd)"
|
|
|
|
sleep 1
|
|
|
|
/usr/bin/env bash -c "$cmd"
|
2016-04-10 03:46:09 +02:00
|
|
|
fi
|