mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 03:43:30 +01:00
14 lines
160 B
Text
14 lines
160 B
Text
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
withGradle() {
|
||
|
sh './gradlew clean build'
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|