ium_470623/jenkinsfile

10 lines
182 B
Plaintext

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world! Some test text - added text'
}
}
}
}