workout/Jenkinsfile

10 lines
106 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'env'
}
}
}
}