Added Jenkinsfile
All checks were successful
test/test-repo/pipeline/head This commit looks good

This commit is contained in:
Robert Vokac 2023-05-12 19:13:38 +02:00
parent 137b339fa2
commit 07ebde2576
No known key found for this signature in database
GPG Key ID: 693D30BEE3329055

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World from app1'
}
}
}
}