test → master #66

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

8
Jenkinsfile vendored
View File

@ -50,6 +50,10 @@ pipeline {
branch 'test'
}
}
environment {
REPREPRO_DIR = '/var/lib/reprepro'
REPO_DIR = "$REPREPRO_DIR/repo"
}
steps {
unstash 'debuildOutput'
script {
@ -72,11 +76,11 @@ pipeline {
sshPut([
remote: remote,
from: "output/$debFile",
into: '/var/lib/reprepro/repo/incoming'
into: "$REPO_DIR/incoming"
])
sshCommand([
remote: remote,
command: "reprepro -b /reprepro --gnupghome /reprepro/.gnupg includedeb bookworm /var/lib/reprepro/repo/incoming/$debFile"
command: "reprepro -b $REPO_DIR --gnupghome $REPREPRO_DIR/.gnupg includedeb bookworm $REPO_DIR/incoming/$debFile"
])
}
}