init Jenkinsfile - hello world

This commit is contained in:
s407323 2019-04-26 11:05:16 +02:00
parent c4acb34127
commit e541ba6801

10
Jenkinsfile vendored Normal file
View File

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