s421818-mlworkshops/Jenkinsfile
2020-04-03 11:44:00 +02:00

15 lines
214 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
node {
checkout scm
stash 'source'
}
echo 'Hello world!'
}
}
}
}