mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-12-22 22:59:23 +01:00
14 lines
No EOL
160 B
Groovy
14 lines
No EOL
160 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
withGradle() {
|
|
sh './gradlew clean build'
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
} |