ium_487197/Jenkinsfile_dvc
Wojciech Lidwin 508f315ef4 Fix
2023-05-12 13:41:29 +02:00

24 lines
671 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: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
sh 'dvc remote modify --local ium_ssh_remote password IUM@2021'
sh 'dvc pull'
}
}
}
}