tools: port cargo-doc to python
This lets us use the common arg parsing infrastructure, and it should work on Windows (as opposed to the previous bash script). BUG=b:267672683 TEST=tools/cargo-doc TEST=tools/cargo-doc --target-dir=/tmp/crosvm-doc Change-Id: Ib56f4d28965d32ea01a9aa55d7840edfb71f3d59 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4483471 Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
parent
8831cf5560
commit
49ba9f2df6
1 changed files with 23 additions and 9 deletions
|
|
@ -1,17 +1,31 @@
|
|||
#!/usr/bin/env bash
|
||||
#!/usr/bin/env python3
|
||||
# Copyright 2021 The ChromiumOS Authors
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
set -ex
|
||||
from typing import Optional
|
||||
|
||||
from impl.common import CROSVM_ROOT, chdir, cmd, quoted, run_main
|
||||
|
||||
# Build cargo-doc
|
||||
# $ ./tools/cargo-doc --target-dir /path/to/dir
|
||||
|
||||
cargo doc \
|
||||
--workspace \
|
||||
--no-deps \
|
||||
--exclude crosvm-fuzz \
|
||||
--features="all-x86_64" \
|
||||
--document-private-items \
|
||||
"$@"
|
||||
cargo = cmd("cargo").with_color_flag()
|
||||
|
||||
|
||||
def main(target_dir: Optional[str] = None, *extra_args: str):
|
||||
chdir(CROSVM_ROOT)
|
||||
cargo(
|
||||
"doc",
|
||||
"--workspace",
|
||||
"--no-deps",
|
||||
"--exclude=crosvm-fuzz",
|
||||
"--features=all-x86_64",
|
||||
"--document-private-items",
|
||||
quoted(f"--target-dir={target_dir}") if target_dir else None,
|
||||
*extra_args,
|
||||
).fg()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
run_main(main)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue