Jenkins demo pipeline checkout step

master
marius 2020-04-21 15:04:14 +02:00
parent 8f591f8506
commit 1a500971ad
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
}