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:34:03 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|