test-repo/Jenkinsfile
Robert Vokac b8c3824889
Some checks failed
test/test-repo/pipeline/head There was a failure building this commit
a
2023-05-12 20:03:42 +02:00

13 lines
143 B
Groovy

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