test → master #66

Merged
guillermo merged 70 commits from test into master 2024-07-23 06:23:47 +00:00
1 changed files with 2 additions and 4 deletions
Showing only changes of commit 29168a6927 - Show all commits

6
Jenkinsfile vendored
View File

@ -56,7 +56,6 @@ pipeline {
def files = findFiles(glob: 'output/*.deb')
files.each { file -> debFile = file.name }
}
echo debFile
withCredentials([sshUserPrivateKey(
credentialsId: 'jenkins-agent',
@ -69,16 +68,15 @@ pipeline {
remote.name = 'reprepro'
remote.host = 'reprepro.reprepro'
remote.allowAnyHosts = true
remote.logLevel = 'FINEST'
}
sshPut([
remote: remote,
from: "output/$debFile",
into: '/var/www/html/incoming'
into: '/var/lib/reprepro/repo/incoming'
])
sshCommand([
remote: remote,
command: "sudo -u www-data reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /var/www/html/incoming/$debFile"
command: "reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /var/lib/reprepro/repo/incoming/$debFile"
])
}
}