spring-petclinic/Jenkinsfile

11 lines
112 B
Text
Raw Normal View History

2025-02-26 10:36:50 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Bulding'
}
}
}
}