adding Jenkinsfile

This commit is contained in:
Małgorzata Schmidt 2019-04-26 11:01:13 +02:00
parent 8a583f8e0c
commit cd02a610b7

10
Jenkinsfile vendored Normal file
View File

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