Update Jenkinsfile

Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com>
This commit is contained in:
Ramesh05 2025-06-24 20:44:32 +05:30 committed by GitHub
parent a81c615514
commit f80de4a532
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

18
Jenkinsfile vendored
View file

@ -2,22 +2,20 @@ pipeline {
agent any
stages {
stage('git') {
stage('Build') {
steps {
git branch: '', url: 'https://github.com/Ramesh05/spring-petclinic.git'
echo 'Building..'
}
}
stage('build') {
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('test') {
stage('Deploy') {
steps {
}
}
stage('deploy') {
steps {
}
}
echo 'Deploying....'
}
}
}
}