From a487903bf8cf87154b7d1f379166b9497dc85ec8 Mon Sep 17 00:00:00 2001 From: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> Date: Sat, 21 Jun 2025 17:43:38 +0530 Subject: [PATCH 1/5] Create jenkins file Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> --- jenkins file | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 jenkins file diff --git a/jenkins file b/jenkins file new file mode 100644 index 000000000..a7936625d --- /dev/null +++ b/jenkins file @@ -0,0 +1,14 @@ +pipeline { + agent any + + stages { + stage('git') { + } + stage('build') { + } + stage('install') { + } + stage ('deploy') { + } + } + } From 35fa9f39ce78c4f862c0655f394383e72fde0e8a Mon Sep 17 00:00:00 2001 From: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> Date: Sat, 21 Jun 2025 18:23:56 +0530 Subject: [PATCH 2/5] Update and rename jenkins file to Jenkinsfile Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> --- jenkins file => Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename jenkins file => Jenkinsfile (86%) diff --git a/jenkins file b/Jenkinsfile similarity index 86% rename from jenkins file rename to Jenkinsfile index a7936625d..1b46cdaa5 100644 --- a/jenkins file +++ b/Jenkinsfile @@ -6,7 +6,7 @@ pipeline { } stage('build') { } - stage('install') { + stage('test') { } stage ('deploy') { } From 694e2f878c6383a82399d613fe6df49a8b9f4a4d Mon Sep 17 00:00:00 2001 From: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> Date: Sat, 21 Jun 2025 18:31:03 +0530 Subject: [PATCH 3/5] Update Jenkinsfile Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> --- Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1b46cdaa5..1815f0a2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,12 +3,20 @@ pipeline { stages { stage('git') { + steps { + } } stage('build') { + steps { + } } stage('test') { + steps { + } } - stage ('deploy') { + stage('deploy') { + steps { + } } } } From 0363045e152678b4c59d611942529c536912d9f3 Mon Sep 17 00:00:00 2001 From: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> Date: Sat, 21 Jun 2025 18:37:11 +0530 Subject: [PATCH 4/5] Update Jenkinsfile Signed-off-by: Ramesh05 <61681213+Ramesh05@users.noreply.github.com> --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 1815f0a2d..776862b7f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,7 @@ pipeline { stages { stage('git') { steps { + git branch: '', url: 'https://github.com/Ramesh05/spring-petclinic.git' } } stage('build') { 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 5/5] 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....' + } } } +}