mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-15 00:59:09 +01:00
23 lines
359 B
Groovy
23 lines
359 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Clean') {
|
|
steps {
|
|
sh 'chmod +x ./gradlew'
|
|
sh './gradlew clean --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
sh './gradlew build --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Upload Artifacts') {
|
|
steps {
|
|
archiveArtifacts 'build/libs/**.jar'
|
|
}
|
|
}
|
|
}
|
|
}
|