Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pipeline {
stage('Cleanup Workspace') {
steps {
cleanWs()
sh """
bat script """
echo "Cleaned Up Workspace For Project"
"""
}
Expand All @@ -36,15 +36,15 @@ pipeline {

stage(' Unit Testing') {
steps {
sh """
bat script """
echo "Running Unit Tests"
"""
}
}

stage('Code Analysis') {
steps {
sh """
bat script """
echo "Running Code Analysis"
"""
}
Expand All @@ -55,11 +55,11 @@ pipeline {
branch 'develop'
}
steps {
sh """
bat script """
echo "Building Artifact"
"""

sh """
bat script """
echo "Deploying Code"
"""
}
Expand Down