Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Marek Wendlandt 2019-04-26 11:12:56 +00:00
parent 241f1e4ac7
commit 33747973e4
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored
View File

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