AltitudeAPI/Jenkinsfile
2023-12-30 11:30:48 +01:00

8 lines
120 B
Groovy

pipeline {
stage('Checkout') {
checkout scm
}
stage ('Build') {
sh './gradlew build'
}
}