blob: 82a4d1b1db6095c94b90b09f8f1f7304a10af285 [file] [log] [blame]
#!groovy
//
// This is here to allow the build to pass.
//
pipeline {
agent any
stages {
stage('Pass') {
steps {
echo "Passing..."
}
}
}
}