internal/pkg: optionally register binfmt
Some checks failed
Test / Create distribution (push) Successful in 1m5s
Test / Sandbox (push) Successful in 3m5s
Test / Hakurei (push) Successful in 6m9s
Test / Sandbox (race detector) (push) Successful in 2m30s
Test / Hakurei (race detector) (push) Successful in 3m31s
Test / ShareFS (push) Failing after 2m37s
Test / Flake checks (push) Has been skipped

This transparently supports curing foreign exec artifacts.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-05-07 18:04:59 +09:00
parent 8a3c3d145a
commit 9de1b6a3df
15 changed files with 203 additions and 34 deletions

View File

@@ -93,7 +93,7 @@ func main() {
if !flagLTO {
flags |= rosa.OptLLVMNoLTO
}
rosa.DropCaches(flags)
rosa.DropCaches("", flags)
return nil
}).Flag(

View File

@@ -9,7 +9,7 @@ import (
)
func TestMain(m *testing.M) {
rosa.DropCaches(rosa.OptLLVMNoLTO)
rosa.DropCaches("", rosa.OptLLVMNoLTO)
os.Exit(m.Run())
}