ium_452627/Jenkinsfile_6

24 lines
566 B
Plaintext
Raw Normal View History

2023-05-13 17:33:01 +02:00
pipeline {
agent {
dockerfile {
filename "Dockerfile_4"
}
}
stages {
2023-05-13 18:32:30 +02:00
stage('DVC Commands') {
2023-05-13 17:33:01 +02:00
steps {
2023-05-13 18:30:36 +02:00
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
2023-05-13 18:42:19 +02:00
sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS'
2023-05-13 18:38:35 +02:00
sh 'dvc pull'
sh 'dvc repro'
2023-05-13 18:32:30 +02:00
}
}
2023-05-13 18:33:02 +02:00
}
2023-05-13 18:32:30 +02:00
stage('Archive Output') {
steps {
archiveArtifacts 'metrics.txt'
2023-05-13 17:33:01 +02:00
}
2023-05-13 18:32:30 +02:00
2023-05-13 17:33:01 +02:00
}
}
}