zadanie 4

This commit is contained in:
Szymon Jadczak 2022-03-21 10:57:17 +01:00
parent 912a16b959
commit 63ca6984ad

10
Jenkinsfile vendored Normal file
View File

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