From ad435c191120a0d42bcccebaba24988cf051f641 Mon Sep 17 00:00:00 2001 From: gingerbitter <102943278+gingerbitter@users.noreply.github.com> Date: Wed, 19 Apr 2023 13:42:33 +0530 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 889c8e62..eff40f4a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { stage('Cleanup Workspace') { steps { cleanWs() - sh """ + bat script """ echo "Cleaned Up Workspace For Project" """ } @@ -36,7 +36,7 @@ pipeline { stage(' Unit Testing') { steps { - sh """ + bat script """ echo "Running Unit Tests" """ } @@ -44,7 +44,7 @@ pipeline { stage('Code Analysis') { steps { - sh """ + bat script """ echo "Running Code Analysis" """ } @@ -55,11 +55,11 @@ pipeline { branch 'develop' } steps { - sh """ + bat script """ echo "Building Artifact" """ - sh """ + bat script """ echo "Deploying Code" """ }