janhoy commented on a change in pull request #491:
URL: https://github.com/apache/solr/pull/491#discussion_r780572514



##########
File path: solr/distribution/build.gradle
##########
@@ -92,6 +82,25 @@ task computeChecksums(type: Checksum) {
   outputDir = file("${buildDir}/checksums")
 }
 
+task signBinaryTgz(type: Sign) {
+  sign distTarTask
+}
+task signBinaryZip(type: Sign) {
+  sign distZipTask
+}
+task signSourceTgz(type: Sign) {
+  // The source tgz is not an archive task so be explicit about the outputs to 
sign.
+  dependsOn tasks.assembleSourceTgz
+  sign tasks.assembleSourceTgz.destination
+}
+
+task signReleaseArchives(type: Sync) {
+  from tasks.signBinaryTgz
+  from tasks.signBinaryZip
+  from tasks.signSourceTgz
+
+  into "${buildDir}/signatures"

Review comment:
       Nice!




-- 
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: issues-unsubscr...@solr.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to