Added abilitiy to build RPM and DEB files locally#646
Added abilitiy to build RPM and DEB files locally#646karianna merged 10 commits intoadoptium:masterfrom
Conversation
|
Same comment as the other PR, please can you add the same support to the |
f45584d to
897ae2f
Compare
|
Note: (And pretty much the same change here) Then this will simplify the logic in the spec files for determining whether or not a vendor is building locally or not. Currently, my workaround can be seen in the Microsoft installers PR, but it is a little ugly. This line (the definition for the |
That seems sane to me, I'm not sure if we would need to change any calling scripts in the Adoptium pipelines though. Let's try the change and see if it passes the GH checks and then figure out if there is a caller script in Jenkins that also would need updating. |
I added the change and contained it to |
Feature added :) |
Co-authored-by: Martijn Verburg <martijnverburg@gmail.com>
4c0239b to
362b5da
Compare
karianna
left a comment
There was a problem hiding this comment.
LGTM - but I wonder if the logic to build locally can be captured more cleanly inside namedd functions / blocks, something like:
function buildLocal() {...}
and checks like
if (isLocal())
I'm not fully sure what you mean by this, but maybe I can attempt to explain my original approach here and see if that's what the team might prefer (also not sure if my explanation will make sense in text form here). Originally in Then, in |
Title