mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-03 21:01:11 +00:00
23 lines
428 B
Groovy
23 lines
428 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('git') {
|
|
steps {
|
|
git branch: '', url: 'https://github.com/Ramesh05/spring-petclinic.git'
|
|
}
|
|
}
|
|
stage('build') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('test') {
|
|
steps {
|
|
}
|
|
}
|
|
stage('deploy') {
|
|
steps {
|
|
}
|
|
}
|
|
}
|
|
}
|