Scissors/Jenkinsfile

17 lines
370 B
Plaintext
Raw Normal View History

2022-04-04 17:21:20 -05:00
pipeline {
agent any
stages {
stage('build') {
steps {
2022-04-04 17:32:55 -05:00
sh './gradlew applyPatches --no-daemon'
sh './gradlew paperclipJar --no-daemon'
2022-04-04 17:21:20 -05:00
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
2022-04-06 21:45:16 -05:00
cleanWs()
2022-04-04 17:21:20 -05:00
}
}
}