Zaktualizuj 'Jenkinsfile_dvc'

This commit is contained in:
Kornelia Girejko 2022-06-05 22:15:52 +02:00
parent 377b3a7f40
commit b01c155275

View File

@ -2,7 +2,7 @@ pipeline {
agent {
docker { image 'korneliag/ium478815:1.0' }
}
}
parameters {
string(
defaultValue: 'kgirejko',
@ -19,6 +19,12 @@ pipeline {
}
stages {
stage('one'){
steps{
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's478815', url: 'https://git.wmi.amu.edu.pl/s478815/ium_s478815.git']]])
}
}
stage("dvc"){
steps {
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) {
@ -34,3 +40,4 @@ pipeline {
}
}
}
}