Skip to content

Commit

Permalink
Deploying eShopContainers
Browse files Browse the repository at this point in the history
  • Loading branch information
augustocristian committed Oct 28, 2023
1 parent 714a6d5 commit 2ef00d5
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
node ('xretorch-agent') {
stage ('Clone eShopContainers Project') {

checkout([$class: 'GitSCM', branches: [[name: '*/retorch']],
userRemoteConfigs: [[url: 'https://github.com/augustocristian/retorch-st-eShopOnContainers.git']]])
}//End git stage

stage('Nice test commands') {
sh "ls -a .."
sh "ls "

}



stage('test') {
checkout scm
sh "sleep 10"
sh "mvn test"
}
}// End test stage

}

0 comments on commit 2ef00d5

Please sign in to comment.