spring-petclinic/Jenkinsfile
2025-02-26 11:36:50 +01:00

10 lines
112 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Bulding'
}
}
}
}