Browse Source

Hello World

master
teajay 5 years ago
parent
commit
c9f2a451c0
1 changed files with 5 additions and 3 deletions
  1. 8
      Pipeline/Jenkinsfile

8
Pipeline/Jenkinsfile

@ -12,11 +12,10 @@ pipeline {
stages {
stage('clone') {
steps {
echo ""
echo "###################"
echo "# Cloning Repos #"
echo "###################"
echo ""
echo "checking out build scripts"
dir("${DIR_SCRIPTS}"){
@ -31,7 +30,10 @@ pipeline {
stage('clean'){
steps{
//sh "rm -r ./*"
echo "########################"
echo "# Cleaning Workspace #"
echo "########################"
//sh "rm -r -f ./*"
}
}

Loading…
Cancel
Save