This is an automated email from the ASF dual-hosted git repository.

frankgh pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-sidecar.git


The following commit(s) were added to refs/heads/trunk by this push:
     new b0f54bbee ninja fix: Generate checksums for the deb and RPM files for 
CASSSIDECAR-412
b0f54bbee is described below

commit b0f54bbee270de09aa5ed9f5a9bdf2285eceb2ee
Author: Francisco Guerrero <[email protected]>
AuthorDate: Sun Mar 1 13:24:57 2026 -0800

    ninja fix: Generate checksums for the deb and RPM files for CASSSIDECAR-412
---
 build.gradle | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index 5e5ef406b..8609adf8d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -450,11 +450,11 @@ tasks.register('generateDistributionChecksums') {
     description = 'Generates SHA-256 and SHA-512 checksums for distribution 
artifacts'
     group = 'distribution'
 
-    dependsOn distTar, distZip, sourcesDistTar, sourcesDistZip
+    dependsOn distTar, distZip, sourcesDistTar, sourcesDistZip, buildDeb, 
buildRpm
 
     doLast {
         println "Generating checksums for distribution archives..."
-        [distTar, distZip, sourcesDistTar, sourcesDistZip].each { task ->
+        [distTar, distZip, sourcesDistTar, sourcesDistZip, buildDeb, 
buildRpm].each { task ->
             def archive = task.archiveFile.get().asFile
 
             if (archive.exists()) {
@@ -494,3 +494,5 @@ sourcesDistTar.finalizedBy generateDistributionChecksums
 sourcesDistZip.finalizedBy generateDistributionChecksums
 assembleDist.finalizedBy generateDistributionChecksums
 assembleSourcesDist.finalizedBy generateDistributionChecksums
+buildDeb.finalizedBy generateDistributionChecksums
+buildRpm.finalizedBy generateDistributionChecksums


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to