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