test-img/Jenkinsfile

12 lines
151 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 {
2025-10-01 14:49:58 -03:00
echo 'Mock Pipelin'
2025-09-26 16:26:38 -03:00
}
2025-09-26 16:25:54 -03:00
}
}
2025-09-26 16:26:38 -03:00
}