From f088a5e5ccb326ebdbca3cd7adb97845a0410601 Mon Sep 17 00:00:00 2001 From: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> Date: Tue, 24 Jun 2025 20:45:04 +0530 Subject: [PATCH] Update Jenkinsfile Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> --- Jenkinsfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 776862b7f..b9822500b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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....' + } } } +}