Jenkinsfile for Lab 10
This commit is contained in:
parent
521cf2509e
commit
9d07f6a2b6
12
Jenkinsfile-dvc
Normal file
12
Jenkinsfile-dvc
Normal 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'
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user