10 lines
147 B
Groovy
10 lines
147 B
Groovy
node {
|
|
stage ('clone') {
|
|
checkout scm
|
|
}
|
|
stage('build') {
|
|
sh 'chmod +555 ./gradlew'
|
|
sh './gradlew clean build'
|
|
}
|
|
}
|