Dodanie 'Jenkinsfile'

This commit is contained in:
Witold Woch 2023-03-28 20:15:03 +02:00
parent 0b70f21263
commit 4869d729a7

10
Jenkinsfile vendored Normal file
View File

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