mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-26 22:55:39 +00:00
16 lines
348 B
Groovy
16 lines
348 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
|
|
}
|
|
}
|
|
} |