Home
last modified time | relevance | path

Searched +full:mdbook +full:- (Results 1 – 11 of 11) sorted by relevance

/external/crosvm/tools/
Dinstall-deps3 # Use of this source code is governed by a BSD-style license that can be
5 set -ex
7 sudo apt-get update
8 sudo apt-get install --yes --no-install-recommends \
9 ca-certificates \
10 cloud-image-utils \
12 dpkg-dev \
17 libasound2-dev \
18 libcap-dev \
19 libclang-dev \
[all …]
/external/crosvm/
DCONTRIBUTING.md28 - Prefer mechanism to policy.
29 - Use existing protocols when they are adequate, such as virtio.
30 - Prefer security over code re-use and speed of development.
31 - Only the version of Rust in use by the Chrome OS toolchain is supported. This is ordinarily the
33 - Avoid distribution specific code.
56 1. third-party crates
67 first. This section describes the crosvm-specific workflow.
75 We use [Chromium Gerrit](https://chromium-review.googlesource.com/) for code reviewing. All crosvm
80 #### For Chromium OS Developers {#chromiumos-cl}
86 CQ-tested code as a foundation.
[all …]
DREADME.chromeos.md7 See [Creating a CL for Chromium OS Developers](CONTRIBUTING.md#chromiumos-cl).
12 crosvm mdbook.
17 [postsubmit merging](CONTRIBUTING.md#chromiumos-postsubmit)
/external/rust/cxx/book/
DREADME.md5 - Install [mdBook]: `cargo install mdbook`.
6 - Run `mdbook build` in this directory.
7 - Open the generated *build/index.html*.
9 [mdBook]: https://github.com/rust-lang/mdBook
Dbuild.sh3 set -e
7 if [ -f ./mdbook ]; then
8 ./mdbook build
10 mdbook build
13 if [ ! -d node_modules ]; then
/external/crosvm/.github/workflows/
Dgh-pages.yml6 - main
11 runs-on: ubuntu-20.04
13 group: ${{ github.workflow }}-${{ github.ref }}
15 - uses: actions/checkout@v2
17 - name: Setup mdBook
18 uses: peaceiris/actions-mdbook@v1
20 mdbook-version: 'latest'
21 - name: Install Dependencies
23 ./tools/install-deps
24 - name: Run mdbook
[all …]
/external/rust/cxx/.github/workflows/
Dsite.yml6 - master
8 - book/**
9 - .github/workflows/site.yml
14 runs-on: ubuntu-latest
16 - uses: actions/checkout@v2
18 - name: Get mdBook
21 export MDBOOK_TARBALL="mdbook-${MDBOOK_VERSION}-x86_64-unknown-linux-gnu.tar.gz"
22 … export MDBOOK_URL="https://github.com/dtolnay/mdBook/releases/download/cxx/${MDBOOK_TARBALL}"
23 curl -Lf "${MDBOOK_URL}" | tar -xzC book
24 book/mdbook --version
[all …]
/external/rust/crates/criterion/ci/
Dinstall.sh1 set -ex
4 rustup component add clippy-preview
13 cargo install mdbook --no-default-features
14 cargo install mdbook-linkcheck
15 sudo apt-get update
16 sudo apt-get install python-pip
17 sudo pip install python-dateutil
Dscript.sh1 set -ex
8 cargo clippy --all -- -D warnings
11 cargo doc --features "$FEATURES" --all --no-deps
13 mdbook build
15 cp -r book/book/html/ target/doc/book/
16 travis-cargo doc-upload || true
18 cargo fmt --all -- --check
21 cargo build -Z minimal-versions
23 export RUSTFLAGS="-D warnings"
25 cargo build --features "$FEATURES" $BUILD_ARGS
[all …]
/external/crosvm/docs/book/
Dbook.toml10 command = "mdbook-mermaid"
14 additional-js = ["mermaid.min.js", "mermaid-init.js"]
/external/crosvm/ci/kokoro/
Dbuild-x86_64.sh3 # Use of this source code is governed by a BSD-style license that can be
7 ./tools/dev_container --hermetic bash -c "\
8 ./tools/run_tests --target=host -v \
10 && ./tools/fmt --check \
11 && cargo build --verbose --no-default-features \
12 && mdbook build ./docs/book \
13 && ./tools/cargo-doc"