From bfd826276dd0df8d13874426bc6ce891f7863c13 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 23 Nov 2025 13:04:19 -0600 Subject: [PATCH] fixup! wip: ci: use fedoraBuild --- ci/Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 8315aa6..286f108 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -40,7 +40,7 @@ try { } stage('Sign') { - when(BRANCH_NAME == 'main') { + if (BRANCH_NAME == 'main') { withEnvironment([ "GNUPGHOME=${env.WORKSPACE_TMP}/gnupg", ]) { @@ -57,6 +57,14 @@ try { sh '. ci/sign.sh' } } + } else { + catchError( + catchInterruptions: false, + buildResult: null, + stageResult: 'NOT_BUILT', + ) { + error('skip') + } } }