jenkinsfile

This commit is contained in:
unknown 2020-04-03 11:44:00 +02:00
parent 9c5627ff0e
commit fb9c132921

9
Jenkinsfile vendored
View File

@ -2,11 +2,12 @@ pipeline {
agent any agent any
stages { stages {
stage('Stage 1') { stage('Stage 1') {
node {
checkout scm
stash 'source'
}
steps { steps {
node {
checkout scm
stash 'source'
}
echo 'Hello world!' echo 'Hello world!'
} }
} }