mlworkshops/Jenkinsfile

12 lines
167 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'lsb_release -a'
}
}
}
}