diff --git a/Jenkinsfile b/Jenkinsfile index df02b7f..28b6784 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,25 +1,26 @@ pipeline { agent { docker { image 'debian:stable-slim' }} options { skipDefaultCheckout() checkoutToSubdirectory('blah') } stages { stage('clean workspace') { steps { cleanWs() } } stage('checkout with submodules') { steps { checkout scm sh 'ls blah' } } stage('test submodule') { steps { + sh 'echo salut' } } } }