ium_444354/Jenkinsfile

12 lines
171 B
Plaintext
Raw Normal View History

2022-03-21 11:13:00 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2022-03-23 10:38:52 +01:00
2022-03-23 10:35:56 +01:00
echo 'Hello wordle!'
2022-03-23 10:38:52 +01:00
2022-03-21 11:13:00 +01:00
}
}
}
}