test-img/Jenkinsfile

11 lines
151 B
Groovy

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