Let's try something

This commit is contained in:
Telesphoreo 2022-04-04 17:21:20 -05:00
parent 646f5e6002
commit 65c6dc2d62
1 changed files with 16 additions and 0 deletions

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('build') {
steps {
sh './gradlew applyPatches'
sh './gradlew paperclipJar'
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
}
}
}