Jenkinsfile: Hello World

This commit is contained in:
pavelbannov 2020-01-06 14:15:57 +03:00
parent 0687372768
commit 040a2d0d6b

10
build/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}