ium_487197/Jenkinsfile_dvc
Wojciech Lidwin de97cc32e4 Fix
2023-05-12 13:35:59 +02:00

25 lines
886 B
Plaintext

node {
stage('Preparation') {
properties([
parameters([
])
])
}
stage('checkout: Check out from version control') {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's487197', url: 'https://git.wmi.amu.edu.pl/s487197/ium_487197']]])
}
stage('Dockerfile'){
def testImage = docker.image('s487197/ium:54')
testImage.inside{
withCredentials([string(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', variable: 'IUM_SFTP_KEY')]) {
sh 'dvc remote modify --local ium_ssh_remote keyfile https://tzietkiewicz.vm.wmi.amu.edu.pl:8080/credentials/store/system/domain/_/credential/48ac7004-216e-4260-abba-1fe5db753e18/'
sh 'dvc remote modify --local ium_ssh_remote password IUM@2021'
sh 'dvc pull'
}
}
}
}