Jenkinsfile for Lab 10

This commit is contained in:
Grzegorz Gapiński 2023-05-24 03:58:30 +02:00
parent 521cf2509e
commit 9d07f6a2b6
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile-dvc Normal file
View File

@ -0,0 +1,12 @@
node {
stage('Clone repository') {
git url: 'https://git.wmi.amu.edu.pl/s407409/ium_407409.git', branch: 'master', credentialsId: 's407409/******'
}
stage('DVC') {
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'
}
}
}