New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8292391: Add support for optional signing of native libraries #871
8292391: Add support for optional signing of native libraries #871
Conversation
👋 Welcome back kcr! A progress list of the required criteria for merging this PR into |
@kevinrushforth This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 8 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
/integrate |
Going to push as commit dee34b4.
Your commit was automatically rebased without conflicts. |
@kevinrushforth Pushed as commit dee34b4. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This PR enables an optional signing step inserted into the build right after the step to strip binaries that was added by JDK-8278260. As is the case with the
strip
step, the optional signing is only ever enabled for production builds when running withgradle -PCONF=Release
.This is an optional step, meaning that
codeSignCmd
andcodeSignArgs
need to be provided by scripts external to the repo in order to enable it. By default, they are not defined, so the additional logic added by this PR will do nothing.NOTE: as with the fix for JDK-8278260, this PR adds three copies of the build logic. I filed JDK-8292506 to refactor both of them (strip and sign), and to look for other duplication as well.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jfx pull/871/head:pull/871
$ git checkout pull/871
Update a local copy of the PR:
$ git checkout pull/871
$ git pull https://git.openjdk.org/jfx pull/871/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 871
View PR using the GUI difftool:
$ git pr show -t 871
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jfx/pull/871.diff