ium_444386/Jenkinsfile

11 lines
157 B
Plaintext
Raw Normal View History

2022-03-21 10:57:17 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2022-03-21 11:03:22 +01:00
echo 'Hello world!!!'
2022-03-21 10:57:17 +01:00
}
}
}
}