Scissors/Jenkinsfile

16 lines
348 B
Text
Raw Normal View History

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