Dodaj 'Jenkinsfile'

This commit is contained in:
Tomasz Burewicz 2020-04-03 09:09:05 +00:00
parent b69b4da8b5
commit 2405922822

10
Jenkinsfile vendored Normal file
View File

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