From f863d8a897271ec27be7e4044e65e387ca2f83c2 Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Wed, 10 Jul 2024 11:16:19 +0200 Subject: [PATCH] ci: refs #7643 Debuild debug --- Jenkinsfile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8ca2803e..0ed1b18b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,6 @@ def BRANCH_ENV = [ master: 'production' ] def remote = [:] -def changesFile node { stage('Setup') { @@ -43,19 +42,12 @@ pipeline { files.each { file -> env.CHANGES_FILE = file.name } } - withCredentials([sshUserPrivateKey( - credentialsId: 'jenkins-agent', - keyFileVariable: 'KEY_FILE' - )]) { - sh 'eval "$(ssh-agent -s)"' - sh 'ssh-add "$KEY_FILE"' - + sshagent(credentials: ['jenkins-agent']) { configFileProvider([ configFile(fileId: "dput.cf", variable: 'DPUT_CONFIG') ]) { echo env.DPUT_CONFIG - echo env.KEY_FILE echo env.CHANGES_FILE sh 'dput --config "$DPUT_CONFIG" verdnatura "$CHANGES_FILE"' }