IUM_03 - add Jenkinsfile

This commit is contained in:
Paweł Łączkowski 2024-03-20 14:23:42 +01:00
parent 2c6e70b17f
commit 563e205f2d
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

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