3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-06 13:28:06 +02:00
Geyser/Jenkinsfile

29 Zeilen
725 B
Plaintext

2019-07-24 20:50:51 +02:00
pipeline {
agent any
tools {
2022-02-27 23:38:55 +01:00
gradle 'Gradle 7'
2022-07-12 16:38:57 +02:00
jdk 'Java 17'
2019-07-24 20:50:51 +02:00
}
options {
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
2019-07-24 20:50:51 +02:00
}
stages {
stage ('Build') {
steps {
sh 'git submodule update --init --recursive'
2022-04-24 20:16:39 +02:00
rtGradleRun(
usesPlugin: true,
tool: 'Gradle 7',
buildFile: 'build.gradle.kts',
tasks: 'clean build',
)
2019-07-24 20:50:51 +02:00
}
post {
success {
2022-10-17 04:47:26 +02:00
archiveArtifacts artifacts: 'bootstrap/**/build/libs/Geyser-*.jar', fingerprint: true
2019-07-24 20:50:51 +02:00
}
}
}
}
}