jenkinsfile

This commit is contained in:
Bartosz Szukała 2019-04-26 10:30:30 +02:00
parent 6c83d4e252
commit 731670f926

10
Jenkinsfile vendored Normal file
View File

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