ium_452627/Jenkinsfile_6

24 lines
638 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')]) {
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'
2023-05-13 18:32:30 +02:00
sh 'dvc pull'
}
}
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
}
}
2023-05-13 18:32:30 +02:00
}
2023-05-13 17:33:01 +02:00
}