mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
23 lines
No EOL
327 B
Groovy
23 lines
No EOL
327 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Clean') {
|
|
steps {
|
|
sh './gradlew clean --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Build') {
|
|
steps {
|
|
sh './gradlew build --no-daemon'
|
|
}
|
|
}
|
|
|
|
stage('Upload Artifacts') {
|
|
steps {
|
|
archiveArtifacts 'build/libs/**.jar'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |