ium_444354/Jenkinsfile
2022-03-24 10:49:47 +01:00

12 lines
187 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello check world number two!'
}
}
}
}