ci: refs #7643 Reprepro SSH credentials fix
gitea/hedera-web/pipeline/head There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2024-07-05 13:01:49 +02:00
parent dcf46094f0
commit 5cf6ef5b1c
1 changed files with 17 additions and 19 deletions

12
Jenkinsfile vendored
View File

@ -52,13 +52,9 @@ pipeline {
} }
steps { steps {
unstash 'debuildOutput' unstash 'debuildOutput'
script { script {
debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim() debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim()
}
remote.name = 'reprepro'
remote.host = 'reprepro.reprepro'
remote.allowAnyHosts = true
withCredentials([sshUserPrivateKey( withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent', credentialsId: 'jenkins-agent',
@ -67,8 +63,9 @@ pipeline {
)]) { )]) {
remote.user = user remote.user = user
remote.identityFile = identityFile remote.identityFile = identityFile
} remote.name = 'reprepro'
} remote.host = 'reprepro.reprepro'
remote.allowAnyHosts = true
sshPut([ sshPut([
remote: remote, remote: remote,
@ -81,6 +78,7 @@ pipeline {
]) ])
} }
} }
}
stage('Container') { stage('Container') {
when { when {
anyOf { anyOf {