s396302-mlworkshops/Jenkinsfile

11 lines
168 B
Plaintext
Raw Normal View History

2020-04-03 11:09:05 +02:00
pipeline {
agent any
stages {
2020-04-03 11:36:35 +02:00
stage('Checkout') {
2020-04-03 11:09:05 +02:00
steps {
2020-04-03 11:31:01 +02:00
sh "git checkout -f ${env.master}"
2020-04-03 11:09:05 +02:00
}
}
2020-04-03 11:33:32 +02:00
}
2020-04-03 11:09:05 +02:00
}