ium_444354/Jenkinsfile

10 lines
169 B
Plaintext
Raw Normal View History

2022-03-21 11:13:00 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2022-03-24 10:48:00 +01:00
echo 'Hello check world!'
2022-03-21 11:13:00 +01:00
}
}
}
}