ium_470623/jenkinsfile

10 lines
182 B
Plaintext
Raw Normal View History

2022-03-21 10:51:30 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2022-03-21 10:58:23 +01:00
echo 'Hello world! Some test text - added text'
2022-03-21 10:51:30 +01:00
}
}
}
}