dodanie jenkinsfile

This commit is contained in:
Kacper Dudzic 2022-03-21 11:07:28 +01:00
parent 0f50a77229
commit bdeadc1073

10
Jenkinsfile vendored Normal file
View File

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