Geyser/Jenkinsfile

39 lines
1.0 KiB
Plaintext
Raw Normal View History

2019-07-24 18:50:51 +00:00
pipeline {
agent any
tools {
2022-02-27 22:38:55 +00:00
gradle 'Gradle 7'
2022-07-12 14:38:57 +00:00
jdk 'Java 17'
2019-07-24 18:50:51 +00:00
}
options {
buildDiscarder(logRotator(artifactNumToKeepStr: '20'))
2019-07-24 18:50:51 +00:00
}
stages {
stage ('Build') {
steps {
sh 'git submodule update --init --recursive'
2022-04-24 18:16:39 +00:00
rtGradleRun(
usesPlugin: true,
tool: 'Gradle 7',
buildFile: 'build.gradle.kts',
tasks: 'clean build',
)
2019-07-24 18:50:51 +00:00
}
post {
success {
2022-10-17 02:47:26 +00:00
archiveArtifacts artifacts: 'bootstrap/**/build/libs/Geyser-*.jar', fingerprint: true
2019-07-24 18:50:51 +00:00
}
}
}
}
post {
success {
script {
if (env.BRANCH_NAME == 'master') {
build propagate: false, wait: false, job: 'GeyserMC/GeyserConnect/master', parameters: [booleanParam(name: 'SKIP_DISCORD', value: true)]
}
}
}
2019-07-24 18:50:51 +00:00
}
}