test-img/Jenkinsfile

12 lines
147 B
Text
Raw Normal View History

2025-10-14 16:03:22 -03:00
pipeline {
agent any
stages {
stage('Mock') {
steps {
2025-10-14 16:12:14 -03:00
echo 'SOY MAIN'
2025-10-14 16:03:22 -03:00
}
}
}
}