Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin a393405803 wip: ci: Add Jenkins build pipeline
infra/dch-autoprovision/pipeline/head This commit looks good Details
2025-08-14 08:14:26 -05:00
2 changed files with 2 additions and 7 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 == 'dev/ci') { if (env.BRANCH_NAME == 'master') {
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,8 +9,3 @@ 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