2023-02-25 09:31:33 +00:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
options {
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
2023-05-12 21:46:38 +00:00
|
|
|
withEnv([
|
2024-05-19 11:32:18 +00:00
|
|
|
"PATH+JAVA=${tool 'Temurin-21.0.3_9'}/bin"
|
2023-05-12 21:46:38 +00:00
|
|
|
]) {
|
|
|
|
sh './gradlew clean build'
|
|
|
|
}
|
2023-02-25 09:31:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Archive artifacts') {
|
|
|
|
steps {
|
|
|
|
sh 'rm -rf artifacts'
|
|
|
|
sh 'mkdir artifacts'
|
|
|
|
sh 'cp worldedit-bukkit/build/libs/FastAsyncWorldEdit*.jar artifacts/'
|
|
|
|
sh 'cp worldedit-cli/build/libs/FastAsyncWorldEdit*.jar artifacts/'
|
|
|
|
archiveArtifacts artifacts: 'artifacts/*.jar', followSymlinks: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Fingerprint artifacts') {
|
|
|
|
steps {
|
|
|
|
fingerprint 'worldedit-bukkit/build/libs/FastAsyncWorldEdit*.jar'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Publish JUnit test results') {
|
|
|
|
steps {
|
|
|
|
junit 'worldedit-core/build/test-results/test/*.xml,worldedit-bukkit/build/test-results/test/*.xml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|