feat: add architecture check for RPM build script#393
Conversation
strohel
left a comment
There was a problem hiding this comment.
Sounds sensible, though I have very little context about the RPM build scripts.
BTW where does limitation of not supporting cross compilation come from? From using docker build?
FWIW I'd be also very open to move the RPM build infrastructure to an external git repo, where someone more versed with RPM-based distros could maintain it. This seems to work well for Deb packages.
This is related to #203, I see @wwalker and @refi64 were active to an extent on RPM builds. |
|
Hi @strohel, The main reason is that cross-compiling can be quite slow and often creates compatibility issues across different distributions. For me, managing all those variations is complicated and difficult to maintain. I believe the most reliable approach for now is to simply build the package on the specific platform and architecture where it's needed. This check just ensures the script runs in the correct environment to avoid broken builds. I'm not planning on making more complex changes, so this small validation helps keep things stable for anyone using the script as it is. |
No description provided.