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

This commit is contained in:
Juan Ferrer 2024-07-05 13:07:53 +02:00
parent 444732460e
commit b73e292cb0
1 changed files with 16 additions and 16 deletions

32
Jenkinsfile vendored
View File

@ -56,28 +56,28 @@ pipeline {
debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim()
}
script {
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',
usernameVariable: 'user',
keyFileVariable: 'identityFile'
)]) {
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',
usernameVariable: 'user',
keyFileVariable: 'identityFile'
)]) {
script {
remote.user = user
remote.identityFile = identityFile
remote.name = 'reprepro'
remote.host = 'reprepro.reprepro'
remote.allowAnyHosts = true
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"
])
}
sleep 600 // DEBUG
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"
])
}
}
}