test-repo/Jenkinsfile
Robert Vokac 07ebde2576
All checks were successful
test/test-repo/pipeline/head This commit looks good
Added Jenkinsfile
2023-05-12 19:13:38 +02:00

10 lines
117 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World from app1'
}
}
}
}