Dodanie 'Jenkinsfile'

This commit is contained in:
Sebastian Wałęsa 2022-03-27 13:22:47 +02:00
parent 26ebe3eea9
commit 61ca567dee

10
Jenkinsfile vendored Normal file
View File

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