Browse Source

Hello World

master
teajay 5 years ago
parent
commit
fcec324eaa
1 changed files with 23 additions and 0 deletions
  1. 23
      Pipeline/Jenkinsfile

23
Pipeline/Jenkinsfile

@ -0,0 +1,23 @@
pipeline {
agent none
stages {
node{
stage('Clone'){
steps{
echo "Hello World"
}
}
stage('Clean'){
steps{
}
}
}
}
}
Loading…
Cancel
Save