internal/rosa: flags for toolchain-dependent artifact
All checks were successful
Test / Create distribution (push) Successful in 1m1s
Test / Sandbox (push) Successful in 2m42s
Test / Hakurei (push) Successful in 4m1s
Test / ShareFS (push) Successful in 4m1s
Test / Hpkg (push) Successful in 4m32s
Test / Sandbox (race detector) (push) Successful in 4m58s
Test / Hakurei (race detector) (push) Successful in 6m14s
Test / Flake checks (push) Successful in 1m49s

This is much cleaner to add extra flags to.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-01-29 20:41:38 +09:00
parent 6c1e2f10a7
commit 9d9b7294a4
29 changed files with 65 additions and 55 deletions

View File

@@ -12,7 +12,7 @@ func (t Toolchain) newNSS() pkg.Artifact {
version0 = "4_38_2"
checksum0 = "25x2uJeQnOHIiq_zj17b4sYqKgeoU8-IsySUptoPcdHZ52PohFZfGuIisBreWzx0"
)
return t.New("nss-"+version, false, []pkg.Artifact{
return t.New("nss-"+version, 0, []pkg.Artifact{
t.Load(Make),
t.Load(Perl),
t.Load(Python),
@@ -61,7 +61,7 @@ func (t Toolchain) newBuildCATrust() pkg.Artifact {
func init() { artifactsF[buildcatrust] = Toolchain.newBuildCATrust }
func (t Toolchain) newNSSCACert() pkg.Artifact {
return t.New("nss-cacert", false, []pkg.Artifact{
return t.New("nss-cacert", 0, []pkg.Artifact{
t.Load(Python),
t.Load(NSS),