test-repo/Jenkinsfile
Robert Vokac 4ecce05150
All checks were successful
test/test-repo/pipeline/head This commit looks good
2
2023-05-12 19:47:23 +02:00

11 lines
128 B
Groovy

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