ogagent/Jenkinsfile

11 lines
162 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Jenkinsfile for ogagent'
}
}
}
}