diff options
author | 2021-08-20 13:02:25 -0700 | |
---|---|---|
committer | 2021-08-20 13:08:16 -0700 | |
commit | ca68c49621d2653298e2ff4c53523cd904e744df (patch) | |
tree | cfc0b49f20c2c31864b1e14223cd847f522bf164 /rust/doc.go | |
parent | 0dd067d30908d1cc6d4bfa5e68d6c1c197ecd1d7 (diff) |
rust: doc: Zip up docs when done
Fetching artifacts from the build server doesn't go well with large
numbers of files in nested directories.
Produce an additional rustdoc.zip artifact to make this easier.
This change also prevents ${DIST} from receiving the unpacked rustdoc
site. This can be changed if b/188822051 is fixed.
Bug: 162741284
Test: m rustdoc; check resulting zip contents manually
Change-Id: I80b6a8fa6e274d2d8c3419d8734251afd4d7dba7
Diffstat (limited to 'rust/doc.go')
-rw-r--r-- | rust/doc.go | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/rust/doc.go b/rust/doc.go index e7f137198..fe3581b42 100644 --- a/rust/doc.go +++ b/rust/doc.go @@ -29,6 +29,14 @@ func RustdocSingleton() android.Singleton { type rustdocSingleton struct{} func (n *rustdocSingleton) GenerateBuildActions(ctx android.SingletonContext) { + docDir := android.PathForOutput(ctx, "rustdoc") + docZip := android.PathForOutput(ctx, "rustdoc.zip") + rule := android.NewRuleBuilder(pctx, ctx) + zipCmd := rule.Command().BuiltTool("soong_zip"). + FlagWithOutput("-o ", docZip). + FlagWithArg("-C ", docDir.String()). + FlagWithArg("-D ", docDir.String()) + ctx.VisitAllModules(func(module android.Module) { if !module.Enabled() { return @@ -36,8 +44,10 @@ func (n *rustdocSingleton) GenerateBuildActions(ctx android.SingletonContext) { if m, ok := module.(*Module); ok { if m.docTimestampFile.Valid() { - ctx.Phony("rustdoc", m.docTimestampFile.Path()) + zipCmd.Implicit(m.docTimestampFile.Path()) } } }) + rule.Build("rustdoc-zip", "Zipping all built Rust documentation...") + ctx.Phony("rustdoc", docZip) } |