Compare commits

...

2 Commits

Author SHA1 Message Date
bfd826276d fixup! wip: ci: use fedoraBuild
All checks were successful
RPMs/gasket-driver/pipeline/head This commit looks good
2025-11-23 13:04:19 -06:00
b2937d54c2 fixup! wip: ci: use fedoraBuild 2025-11-23 12:56:34 -06:00

12
ci/Jenkinsfile vendored
View File

@@ -40,7 +40,7 @@ try {
} }
stage('Sign') { stage('Sign') {
when(BRANCH_NAME == 'main') { if (BRANCH_NAME == 'main') {
withEnvironment([ withEnvironment([
"GNUPGHOME=${env.WORKSPACE_TMP}/gnupg", "GNUPGHOME=${env.WORKSPACE_TMP}/gnupg",
]) { ]) {
@@ -57,8 +57,16 @@ try {
sh '. ci/sign.sh' sh '. ci/sign.sh'
} }
} }
} else {
catchError(
catchInterruptions: false,
buildResult: null,
stageResult: 'NOT_BUILT',
) {
error('skip')
}
} }
} }
archiveArtifacts '*.rpm' archiveArtifacts '*.rpm'