Jenkins file

This commit is contained in:
Kamila Bobkowska 2022-03-21 11:06:31 +01:00
parent 51e8d99378
commit 3b463974da

10
Jenkinsfile vendored Normal file
View File

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