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) - } - } } } }