8 lines
120 B
Groovy
8 lines
120 B
Groovy
pipeline {
|
|
stage('Checkout') {
|
|
checkout scm
|
|
}
|
|
stage ('Build') {
|
|
sh './gradlew build'
|
|
}
|
|
} |