test-repo-cdiaz/Jenkinsfile

11 lines
177 B
Text
Raw Permalink Normal View History

2025-10-31 14:35:10 -03:00
pipeline {
agent any
stages {
stage('Example stage') {
steps {
echo 'Hello Jenkins!'
}
}
}
}