fix bracket

This commit is contained in:
Dawid 2021-06-12 18:18:15 +02:00
parent 32fedbee37
commit e9d0cd3603

View File

@ -7,19 +7,19 @@ pipeline {
}
}
stages {
stage('checkout: Check out from version control'){
stage('checkout: Check out from version control'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '87e24204-a0e1-4840-b235-2b993c922d83', url: 'https://git.wmi.amu.edu.pl/s434804/ium_434804.git']]])
}
}
stage('install dependencies') {
steps {
sh 'python -m pip install dvc'
sh 'python -m pip install dvc[ssh] paramiko'
}
}
}
stage('install dependencies') {
steps {
sh 'python -m pip install dvc'
sh 'python -m pip install dvc[ssh] paramiko'
}
}
}
stage('DVC') {
stage('DVC') {
steps {
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
sh "dvc init -f"
@ -27,6 +27,7 @@ pipeline {
sh "dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS"
sh "dvc pull"
sh "dvc reproduce"
}
}
}
post {