mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2025-01-02 12:37:38 +00:00
16 lines
324 B
Plaintext
16 lines
324 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('build') {
|
||
|
steps {
|
||
|
sh './gradlew applyPatches'
|
||
|
sh './gradlew paperclipJar'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
post {
|
||
|
always {
|
||
|
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
||
|
}
|
||
|
}
|
||
|
}
|