You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2022/11/03 11:41:11 UTC

[GitHub] [ignite-3] Pochatkin opened a new pull request, #1308: IGNITE-18040: Artifact and dist signing

Pochatkin opened a new pull request, #1308:
URL: https://github.com/apache/ignite-3/pull/1308

   Added signing for all artifacts
   
   https://issues.apache.org/jira/browse/IGNITE-18040


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [ignite-3] asfgit closed pull request #1308: IGNITE-18040: Artifact and dist signing

Posted by GitBox <gi...@apache.org>.
asfgit closed pull request #1308: IGNITE-18040: Artifact and dist signing
URL: https://github.com/apache/ignite-3/pull/1308


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [ignite-3] sk0x50 commented on a diff in pull request #1308: IGNITE-18040: Artifact and dist signing

Posted by GitBox <gi...@apache.org>.
sk0x50 commented on code in PR #1308:
URL: https://github.com/apache/ignite-3/pull/1308#discussion_r1012837312


##########
RELEASE.md:
##########
@@ -99,3 +99,46 @@ Perform the following actions ONLY after the vote is successful and closed.
    svn add {version}
    svn commit -m “Apache Ignite {version}”
    ```
+
+
+## Gradle commands
+1. Fill sign information in gradle.properties file.

Review Comment:
   I think it would be nice to mention that all these properties should be managed through the gradle.properties file in the user’s Gradle home directory instead of using this file directly in order to avoiding accidental commit private info.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [ignite-3] sk0x50 commented on a diff in pull request #1308: IGNITE-18040: Artifact and dist signing

Posted by GitBox <gi...@apache.org>.
sk0x50 commented on code in PR #1308:
URL: https://github.com/apache/ignite-3/pull/1308#discussion_r1012848370


##########
RELEASE.md:
##########
@@ -99,3 +99,46 @@ Perform the following actions ONLY after the vote is successful and closed.
    svn add {version}
    svn commit -m “Apache Ignite {version}”
    ```
+
+
+## Gradle commands
+1. Fill sign information in gradle.properties file.
+   ```
+   signing.keyId=*INSERT KEY HERE LAST 8 CHARS*
+   signing.password=*INSERT PASSWORD HERE*
+   signing.secretKeyRingFile=*INSERT KEY RING ABSOLUTE PATH HERE* 
+   ```
+   For generate secret key ring file please use follow command
+   ```
+   gpg --keyring secring.gpg --export-secret-keys > ~/.gnupg/secring.gpg
+   ```
+   Show key id command (you need only last 8 chars from printed key)
+   ```
+   gpg -K
+   ```
+2. You can sign any artifact via follow tasks
+   ```
+   signCliZip     --- sign CLI zip distribution 
+   signDbZip      --- sign Ignite zip distribution 
+   signAllDistZip --- sign meta zip distribution (CLI + Ignite)
+   signMavenPublication --- sign jars of all modules

Review Comment:
   Could you please clarify which command(s) must be executed by a release manager to build&sing all required artifacts?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org