s460941-metrics/Jenkinsfile

10 lines
154 B
Plaintext
Raw Normal View History

2020-04-03 13:00:25 +02:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2020-04-03 14:05:43 +02:00
echo 'Hello world!'
2020-04-03 13:00:25 +02:00
}
}
}
}