workout/Jenkinsfile

11 lines
106 B
Plaintext
Raw Normal View History

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