s426274-mlworkshops/Jenkinsfile
2020-04-21 16:22:21 +02:00

11 lines
276 B
Groovy

pipeline {
agent any
stages {
stage('checkout: Check out from version control') {
steps {
git branch: 'stable-2.204',
url: 'https://git.wmi.amu.edu.pl/s426274/s426274-mlworkshops.git'
}
}
}
}