AltitudeAPI/Jenkinsfile

8 lines
120 B
Plaintext
Raw Normal View History

2023-12-30 10:30:48 +00:00
pipeline {
stage('Checkout') {
checkout scm
}
stage ('Build') {
sh './gradlew build'
}
}