s4520929-mlworkshops/Jenkinsfile

17 lines
438 B
Plaintext
Raw Normal View History

2020-04-03 11:29:20 +02:00
pipeline {
agent any
stages {
2020-04-03 13:19:44 +02:00
stage('Clone Git') {
2020-04-03 11:29:20 +02:00
steps {
2020-04-03 13:19:44 +02:00
checkout([$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[
url: 'https://git.wmi.amu.edu.pl/s452092/s4520929-mlworkshops.git']]])
2020-04-03 11:29:20 +02:00
}
}
}
}