workout/Jenkinsfile

10 lines
94 B
Plaintext
Raw Normal View History

2018-05-03 10:11:30 +02:00
pipeline {
stages {
stage('Build') {
steps {
sh 'env'
}
}
}
2018-05-03 11:02:34 +02:00
}