s416122-mlworkshops/Jenkinsfile

12 lines
203 B
Plaintext
Raw Normal View History

2020-04-03 11:29:56 +02:00
pipeline {
2020-04-03 11:32:12 +02:00
agent any
2020-04-03 11:29:56 +02:00
2020-04-03 11:32:12 +02:00
stages {
2020-04-03 13:10:35 +02:00
stage('checkout: Check out from version control') {
2020-04-03 11:32:12 +02:00
steps {
2020-04-03 13:10:35 +02:00
git 'https://git.wmi.amu.edu.pl/s416122/s416122-mlworkshops'
2020-04-03 11:32:12 +02:00
}
}
}
2020-04-03 13:10:35 +02:00
}