clone git and checkout (Jenkinsfile)

This commit is contained in:
s407323 2019-04-26 11:37:22 +02:00
parent f4f8d96291
commit 703e8cdbc4

11
Jenkinsfile vendored
View File

@ -9,7 +9,16 @@ pipeline {
stage('Stage 2') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: 'ASR-eval/'
echo 'Kopiowanie plików z wynikami rozpoznawania mowy z artefaktów projektu ASR-eval'
script {
copyArtifacts filter: '*',
fingerprintArtifacts: true,
projectName: 'ASR-eval',
selector: lastSuccessful(),
target: 'ASR-eval/'
}
echo 'Sklonowanie repozytorium git'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s407323/s407323-mlworkshops']]])
}
}
}