From f61b40fbfbc7f247d582ace07f466257c7965d51 Mon Sep 17 00:00:00 2001 From: Toastie <toastie@toastiet0ast.com> Date: Thu, 27 Mar 2025 20:21:57 +1300 Subject: [PATCH] Removed fedora package from the Jenkinsfile due to it not compiling correctly. --- Jenkinsfile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d1c9f28..57d188f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -64,20 +64,6 @@ pipeline archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.el8.x86_64.rpm', caseSensitive: true) } } - stage('Fedora') - { - agent - { - dockerfile { filename 'packaging/Fedora.Dockerfile' } - } - environment { DOTNET_CLI_HOME = "/tmp/.dotnet" } - steps - { - sh 'rpmbuild -bb packaging/supportchild.spec --define "_topdir $PWD/.rpmbuild-fedora" --define "dev_build true"' - sh 'cp .rpmbuild-fedora/RPMS/x86_64/supportchild-dev-*.fed.x86_64.rpm linux-x64/' - archiveArtifacts(artifacts: 'linux-x64/supportchild-dev-*.fed.x86_64.rpm', caseSensitive: true) - } - } } } }