ium_464914/Jenkinsfile

10 lines
166 B
Plaintext
Raw Normal View History

2024-03-20 14:34:00 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2024-03-20 14:50:38 +01:00
echo 'Hello Test world!'
2024-03-20 14:34:00 +01:00
}
}
}
}