3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2025-01-12 08:01:06 +01:00
Geyser/Jenkinsfile

29 Zeilen
725 B
Plaintext

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