From 12c66b368ae5737bb1eb0bed6ab8ba3c9eec8561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dudziak?= Date: Sat, 13 May 2023 12:15:12 +0200 Subject: [PATCH] Zaktualizuj 'Jenkinsfile_dvc' --- Jenkinsfile_dvc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile_dvc b/Jenkinsfile_dvc index 2775547..c188ff1 100644 --- a/Jenkinsfile_dvc +++ b/Jenkinsfile_dvc @@ -5,13 +5,16 @@ pipeline { stage('Clone repository') { steps { sh 'cd ium_452662' - sh 'cd zbior_ium' } } stage('Download DVC files') { steps { + withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { + sh 'dvc remote add -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp' + sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_KEY' sh 'dvc pull' + } } }