s421818-mlworkshops/Jenkinsfile

14 lines
206 B
Plaintext
Raw Normal View History

2020-04-03 11:24:17 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
2020-04-03 11:43:27 +02:00
node {
checkout scm
stash 'source'
}
2020-04-03 11:24:17 +02:00
steps {
2020-04-03 11:43:27 +02:00
echo 'Hello world!'
2020-04-03 11:24:17 +02:00
}
}
}
}