internal/rosa/package/zstd: use zstd-compressed tarball
Test / Create distribution (push) Successful in 2m44s
Test / Sandbox (push) Successful in 6m14s
Test / Hakurei (push) Successful in 7m20s
Test / ShareFS (push) Successful in 7m24s
Test / Sandbox (race detector) (push) Successful in 8m49s
Test / Hakurei (race detector) (push) Successful in 10m15s
Test / Flake checks (push) Successful in 1m19s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-07-24 00:06:18 +09:00
parent 390f3b2dae
commit 46b247f911
2 changed files with 5 additions and 3 deletions
+3 -3
View File
@@ -7,9 +7,9 @@ package zstd {
source = remoteGitHubRelease {
suffix = "facebook/zstd";
tag = "v"+version;
name = "zstd-"+version+".tar.gz";
checksum = "4XhfR7DwVkwo1R-TmYDAJOcx9YXv9WSFhcFUe3hWEAMmdMLPhFaznCqYIA19_xxV";
compress = gzip;
name = "zstd-"+version+".tar.zst";
checksum = "iUIf2pzFlXjJFudQrUULhLTaLMt-u2WLqondzPaEMwwawRNrE44gd4DPwX3w6drX";
compress = zstd;
};
// tests Makefile assumes writable source
+2
View File
@@ -484,6 +484,7 @@ func (s *S) getFrame() azalea.Frame {
k("uncompressed"): 0,
k("gzip"): pkg.Gzip + compressOffset,
k("bzip2"): pkg.Bzip2 + compressOffset,
k("zstd"): pkg.Zstd + compressOffset,
}
s.frame.Val = map[unique.Handle[azalea.Ident]]any{
@@ -801,6 +802,7 @@ func (s *S) getFrame() azalea.Frame {
}, V: map[unique.Handle[azalea.Ident]]any{
k("gzip"): uint32(pkg.Gzip),
k("bzip2"): uint32(pkg.Bzip2),
k("zstd"): uint32(pkg.Zstd),
}},
// high-level helpers