test-img/Jenkinsfile

12 lines
139 B
Text
Raw Normal View History

2025-09-26 16:25:54 -03:00
pipeline {
2025-09-26 16:26:38 -03:00
agent any
2025-09-26 16:25:54 -03:00
stages {
stage('Mock') {
2025-09-26 16:26:38 -03:00
steps {
echo ''
}
2025-09-26 16:25:54 -03:00
}
}
2025-09-26 16:26:38 -03:00
}