test-img/Jenkinsfile
2025-10-15 08:51:58 -03:00

11 lines
152 B
Groovy

pipeline {
agent any
stages {
stage('Mock') {
steps {
echo 'Mock Pipeline'
}
}
}
}