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

6
Jenkinsfile vendored
View File

@ -56,18 +56,19 @@ pipeline {
debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim() debFile = sh(script: 'ls output/*.deb', returnStdout: true).trim()
} }
script {
withCredentials([sshUserPrivateKey( withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent', credentialsId: 'jenkins-agent',
usernameVariable: 'user', usernameVariable: 'user',
keyFileVariable: 'identityFile' keyFileVariable: 'identityFile'
)]) { )]) {
script {
remote.user = user remote.user = user
remote.identityFile = identityFile remote.identityFile = identityFile
remote.name = 'reprepro' remote.name = 'reprepro'
remote.host = 'reprepro.reprepro' remote.host = 'reprepro.reprepro'
remote.allowAnyHosts = true remote.allowAnyHosts = true
}
sleep 600 // DEBUG
sshPut([ sshPut([
remote: remote, remote: remote,
from: "$debFile", from: "$debFile",
@ -80,7 +81,6 @@ pipeline {
} }
} }
} }
}
stage('Container') { stage('Container') {
when { when {
anyOf { anyOf {