Files
demo-ci/Jenkinsfile
T
2026-08-25 02:07:51 +00:00

11 lines
145 B
Groovy

pipeline {
agent any
stages {
stage("Build") {
steps {
sh "echo CI-OK build de demo-ci en $(hostname)"
}
}
}
}