clone git repository

This commit is contained in:
Olga 2020-04-03 13:19:44 +02:00
parent a1ead633d0
commit ecd46b6275

10
Jenkinsfile vendored
View File

@ -2,9 +2,15 @@ pipeline {
agent any
stages {
stage('Stage 1') {
stage('Clone Git') {
steps {
echo 'Hello World'
checkout([$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[
url: 'https://git.wmi.amu.edu.pl/s452092/s4520929-mlworkshops.git']]])
}
}
}