s460941-metrics/Jenkinsfile

10 lines
155 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 13:20:21 +02:00
echo 'Hello world2!'
2020-04-03 13:00:25 +02:00
}
}
}
}