ci: refs #7643 Reprepro SSH credentials fix
gitea/hedera-web/pipeline/head There was a failure building this commit
Details
gitea/hedera-web/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
dcf46094f0
commit
5cf6ef5b1c
|
@ -52,33 +52,31 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
unstash 'debuildOutput'
|
||||
|
||||
script {
|
||||
debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim()
|
||||
}
|
||||
|
||||
withCredentials([sshUserPrivateKey(
|
||||
credentialsId: 'jenkins-agent',
|
||||
usernameVariable: 'user',
|
||||
keyFileVariable: 'identityFile'
|
||||
)]) {
|
||||
remote.user = user
|
||||
remote.identityFile = identityFile
|
||||
remote.name = 'reprepro'
|
||||
remote.host = 'reprepro.reprepro'
|
||||
remote.allowAnyHosts = true
|
||||
|
||||
withCredentials([sshUserPrivateKey(
|
||||
credentialsId: 'jenkins-agent',
|
||||
usernameVariable: 'user',
|
||||
keyFileVariable: 'identityFile'
|
||||
)]) {
|
||||
remote.user = user
|
||||
remote.identityFile = identityFile
|
||||
}
|
||||
sshPut([
|
||||
remote: remote,
|
||||
from: "$debFile",
|
||||
into: '/tmp'
|
||||
])
|
||||
sshcommand([
|
||||
remote: remote,
|
||||
command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /tmp/$debFile"
|
||||
])
|
||||
}
|
||||
|
||||
sshPut([
|
||||
remote: remote,
|
||||
from: "$debFile",
|
||||
into: '/tmp'
|
||||
])
|
||||
sshcommand([
|
||||
remote: remote,
|
||||
command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /tmp/$debFile"
|
||||
])
|
||||
}
|
||||
}
|
||||
stage('Container') {
|
||||
|
|
Loading…
Reference in New Issue