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

14
Jenkinsfile vendored
View file

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