Removed fedora package from the Jenkinsfile due to it not compiling correctly.

This commit is contained in:
Toastie 2025-03-27 20:21:57 +13:00
parent 141c52dd58
commit f61b40fbfb
Signed by: toastie_t0ast
GPG key ID: 74226CF45EEE5AAF

14
Jenkinsfile vendored
View file

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