Update 'build-minecraft.jenkins'

This commit is contained in:
Hyatt 2021-11-28 00:36:06 +00:00
parent cc555aceda
commit 62aefc3e52

View File

@ -34,6 +34,12 @@ spec:
tty: true tty: true
command: command:
- /busybox/cat - /busybox/cat
- name: alpine
image: ${repository}/library/alpine:latest
imagePullPolicy: Always
tty: true
command:
- /bin/sh
""") { """) {
node (nodeLabel) { node (nodeLabel) {
// Set working directory // Set working directory
@ -88,12 +94,21 @@ CMD cd data; java -Xms${memoryMin} -Xmx${memoryMax} -jar ../paper-mc.jar
} }
stage ("Build & Push") { stage ("Build & Push") {
container ("alpine") {
sh "apk add --no-cache curl jq"
paperDownload = sh (
script: """
paperBuild=\$(curl --silent --location --fail https://papermc.io/api/v2/projects/paper/versions/${paperVersion} | jq '.builds | max')
paperFile=\$(curl --silent --location --fail https://papermc.io/api/v2/projects/paper/versions/${paperVersion}/builds/\${paperBuild} | jq '.downloads.application.name')
echo https://papermc.io/api/v2/projects/paper/versions/${paperVersion}/builds/\${paperBuild}/downloads/\${paperFile}
"""
returnStdout: true
).trim()
}
container ("kaniko") { container ("kaniko") {
sh """ sh """
paperBuild=\$(curl --silent --location --fail https://papermc.io/api/v2/projects/paper/versions/${paperVersion} | jq '.builds | max') /kaniko/executor --cleanup --context "${workspace}" -f "${workspace}/Dockerfile" --destination "${repository}/library/minecraft:latest" --build-arg "paperDownload=${paperDownload}"
paperFile=\$(curl --silent --location --fail https://papermc.io/api/v2/projects/paper/versions/${paperVersion}/builds/\${paperBuild} | jq '.downloads.application.name')
paperDownload="https://papermc.io/api/v2/projects/paper/versions/${paperVersion}/builds/\${paperBuild}/downloads/\${paperFile}"
/kaniko/executor --cleanup --context "${workspace}" -f "${workspace}/Dockerfile" --destination "${repository}/library/minecraft:latest" --build-arg "paperDownload=\${paperDownload}"
""" """
} }
} }