mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
43 lines
1.1 KiB
Bash
Executable file
43 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# shellcheck source=start-utils
|
|
. "${SCRIPTS:-$(dirname "$0")}/start-utils"
|
|
set -o pipefail
|
|
set -e
|
|
isDebugging && set -x
|
|
|
|
resolveVersion
|
|
: "${MOHIST_BUILD:=lastSuccessfulBuild}"
|
|
|
|
mohistJobs=https://ci.codemc.io/job/MohistMC/job/
|
|
mohistJob=${mohistJobs}Mohist-${VERSION}/
|
|
|
|
if ! get --exists "${mohistJob}"; then
|
|
log "ERROR: mohist builds do not exist for ${VERSION}"
|
|
log " check https://ci.codemc.io/job/MohistMC/ for available versions"
|
|
log " and set VERSION accordingly"
|
|
exit 1
|
|
fi
|
|
|
|
buildRelPath=$(
|
|
get --json-path '$.artifacts[0].relativePath' "${mohistJob}${MOHIST_BUILD}/api/json"
|
|
)
|
|
|
|
baseName=$(basename "${buildRelPath}")
|
|
if [[ ${baseName} != *-server.jar* ]]; then
|
|
log "ERROR: mohist build for ${VERSION} is not a valid server jar, found ${baseName}"
|
|
log " check https://ci.codemc.io/job/MohistMC/ for available versions"
|
|
log " and set VERSION accordingly"
|
|
exit 1
|
|
fi
|
|
|
|
export SERVER="/data/${baseName}"
|
|
|
|
if [ ! -f "${SERVER}" ]; then
|
|
log "Downloading ${baseName}"
|
|
get -o "${SERVER}" "${mohistJob}${MOHIST_BUILD}/artifact/${buildRelPath}"
|
|
fi
|
|
|
|
export FAMILY=HYBRID
|
|
|
|
exec "${SCRIPTS:-/}start-spiget" "$@"
|