workout/Jenkinsfile

11 lines
106 B
Groovy

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