Add Jenkinsfile

This commit is contained in:
Gabriela Pałka 2020-04-03 10:56:17 +02:00
commit c6a9111ab0

10
Jenkinsfile vendored Normal file
View File

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