Lines Matching +full:mdbook +full:-
2 # Use of this source code is governed by a BSD-style license that can be
16 BOOK_URL = "gs://crosvm-dot-dev/book"
17 DOCS_URL = "gs://crosvm-dot-dev/doc"
22 Builds crosvm mdbook and api docs, then uploads them to GCS.
25 $ luci-auth context ./infra/recipes.py run build_docs
29 "Build mdbook", ["mdbook", "build", "docs/book/", "--dest-dir", "../target"]
33 ["./tools/cargo-doc", "--target-dir", "docs/target"],
36 # Container generated files are root-owned, we need to make sure they will be readable by
40 ["chmod", "-R", "o+r", "docs/target"],
44 ["rsync", "-r", "-d", "./docs/target/html", BOOK_URL],
50 ["rsync", "-r", "./docs/target/doc", DOCS_URL],
58 "Build mdbook", "Run cargo docs", "gsutil Upload book", "gsutil Upload docs"