Jenkinsfile added

This commit is contained in:
Damian Michalski 2020-04-03 11:18:54 +02:00
parent 9f2c3c7e7a
commit e4a7ea753c

10
Jenkinsfile vendored Normal file
View File

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