s396302-mlworkshops/Jenkinsfile

11 lines
360 B
Plaintext
Raw Normal View History

2020-04-03 11:09:05 +02:00
pipeline {
2020-04-03 11:37:59 +02:00
agent any
}
2020-04-03 11:09:05 +02:00
stages {
2020-04-03 11:36:35 +02:00
stage('Checkout') {
2020-04-03 11:09:05 +02:00
steps {
2020-04-03 12:07:08 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s396302/s396302-mlworkshops']]])
2020-04-03 11:09:05 +02:00
}
}
2020-04-03 11:33:32 +02:00
}
2020-04-03 11:09:05 +02:00
}