mieszkania5/Jenkinsfile

10 lines
163 B
Plaintext
Raw Permalink Normal View History

2023-10-24 18:18:07 +02:00
pipeline {
2023-10-24 18:49:29 +02:00
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
2023-10-24 18:18:07 +02:00
}
}