mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-14 19:34:54 -05:00
16 lines
324 B
Text
16 lines
324 B
Text
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('build') {
|
||
|
steps {
|
||
|
sh './gradlew applyPatches'
|
||
|
sh './gradlew paperclipJar'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
post {
|
||
|
always {
|
||
|
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
||
|
}
|
||
|
}
|
||
|
}
|