Compare commits
2 Commits
a393405803
...
8cf97f2878
Author | SHA1 | Date |
---|---|---|
|
8cf97f2878 | |
|
73d1ddfbed |
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue