Compare commits

..

2 Commits

Author SHA1 Message Date
Dustin 8cf97f2878 xxx
infra/dch-autoprovision/pipeline/head This commit looks good Details
2025-08-14 08:18:26 -05:00
Dustin 73d1ddfbed wip: ci: Add Jenkins build pipeline 2025-08-14 08:18:22 -05:00
2 changed files with 7 additions and 2 deletions

4
ci/Jenkinsfile vendored
View File

@ -43,7 +43,7 @@ pipeline {
steps { steps {
sh '. ci/build.sh' sh '. ci/build.sh'
script { script {
if (env.BRANCH_NAME == 'master') { if (env.BRANCH_NAME == 'dev/ci') {
withCredentials([ withCredentials([
file( file(
credentialsId: 'rpm-gpg-key', credentialsId: 'rpm-gpg-key',
@ -61,7 +61,7 @@ pipeline {
} }
post { post {
success { success {
archiveArtifacts "f${FEDORA}/*/*.rpm" archiveArtifacts "f${FEDORA}/**/*.rpm"
} }
} }
} }

View File

@ -9,3 +9,8 @@ rpm-sign
rsync rsync
systemd-rpm-macros systemd-rpm-macros
EOF EOF
install -m u=rwx,go= -d "${GNUPGHOME}"
cat > "${GNUPGHOME}"/gpg-agent.conf <<EOF
allow-loopback-pinentry
EOF