ium_444354/Jenkinsfile
Adrian Charkiewicz 814e7fa2bf check pipeline
2022-03-21 11:13:00 +01:00

10 lines
164 B
Groovy

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world2!'
}
}
}
}