Add 'Jenkinsfile'

This commit is contained in:
Eryka Przewoźnik 2019-04-26 08:48:53 +00:00
parent e7ddef5f83
commit ede5570b5f

10
Jenkinsfile vendored Normal file
View File

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