test-repo/Jenkinsfile

11 lines
128 B
Plaintext
Raw Normal View History

2023-05-12 19:13:38 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
2023-05-12 19:47:23 +02:00
echo 'Hello World from app1 on Friday'
2023-05-12 19:13:38 +02:00
}
}
}
2023-05-12 19:47:23 +02:00
}