ium_452627/Jenkinsfile_6

18 lines
544 B
Plaintext
Raw Normal View History

2023-05-13 17:33:01 +02:00
pipeline {
agent {
dockerfile {
filename "Dockerfile_4"
}
}
stages {
stage('Archive Output') {
steps {
2023-05-13 18:30:36 +02:00
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'
2023-05-13 17:33:01 +02:00
archiveArtifacts 'metrics.txt'
}
}
}
}