Scissors/Jenkinsfile
2022-04-06 21:45:16 -05:00

17 lines
370 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
sh './gradlew applyPatches --no-daemon'
sh './gradlew paperclipJar --no-daemon'
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
cleanWs()
}
}
}