Create Jenkinsfile

This commit is contained in:
Yeshwanth351 2024-03-27 15:47:33 +05:30 committed by GitHub
parent 0a529015bc
commit 5d44c0341e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
git branch: 'main', url: 'https://github.com/Yeshwanth351/spring-petclinic.git'
}
}
}
}