added jenkinsfile

This commit is contained in:
Mateusz Kuc 2023-03-25 13:42:13 +01:00
parent 0150d1ac43
commit fe162d7fa0
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 from GitHub!'
}
}
}
}