From 12191f80846af35b21f5e0219eae60c4971c1c27 Mon Sep 17 00:00:00 2001 From: ulaniuk Date: Sun, 5 Jun 2022 10:12:17 +0200 Subject: [PATCH] JenkinsfileDVC --- .dvc/config | 2 +- JenkinsfileDVC | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 JenkinsfileDVC diff --git a/.dvc/config b/.dvc/config index c421e3d..6504fc6 100644 --- a/.dvc/config +++ b/.dvc/config @@ -1,5 +1,5 @@ [core] remote = ium_ssh_remote ['remote "ium_ssh_remote"'] - url = ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl + url = ssh://tzietkiewicz.vm.wmi.amu.edu.pl:/home/ium-sftp user = ium-sftp diff --git a/JenkinsfileDVC b/JenkinsfileDVC new file mode 100644 index 0000000..72f4f0d --- /dev/null +++ b/JenkinsfileDVC @@ -0,0 +1,25 @@ +pipeline { + stages { + + stage('Checkout'){ + steps{ + checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's478855', url: 'https://git.wmi.amu.edu.pl/s478855/ium_478855.git']]]) + } + } + + stage("DVC"){ + steps { + withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) { + sh 'dvc remote modify --local ium_ssh_remote keyfile $IUM_SFTP_KEY' + sh 'dvc remote modify --local ium_ssh_remote password IUM@2021' + sh 'dvc remote list' + sh 'cat .dvc/config' + sh 'cat .dvc/config.local' + sh 'dvc pull' + sh 'dvc repro' + sh 'ls -al' + } + } + } + } +} \ No newline at end of file