Add dvc yaml solution lab10

This commit is contained in:
michalzareba 2021-06-12 18:02:55 +02:00
parent 93658c5c7c
commit 72fa344524

View File

@ -1,7 +1,7 @@
pipeline{ pipeline{
agent { agent {
docker { docker {
image 's434804/ium:0.5' image 'shroomy/ium:8'
args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns ' args '-v /tmp/mlruns:/tmp/mlruns -v /mlruns:/mlruns '
} }
} }
@ -15,8 +15,6 @@ pipeline{
stage("DVC"){ stage("DVC"){
steps{ steps{
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) { withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
sh 'pip install dvc'
sh 'pip install dvc[ssh] paramiko'
sh "dvc init -f" sh "dvc init -f"
sh "dvc remote add -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp" 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 remote modify --local ium_ssh_remote password $IUM_SFTP_KEY"