Searched +full:mdbook +full:- (Results 1 – 11 of 11) sorted by relevance
3 # Use of this source code is governed by a BSD-style license that can be5 set -ex7 sudo apt-get update8 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 …]
28 - 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 the33 - Avoid distribution specific code.56 1. third-party crates67 first. This section describes the crosvm-specific workflow.75 We use [Chromium Gerrit](https://chromium-review.googlesource.com/) for code reviewing. All crosvm80 #### For Chromium OS Developers {#chromiumos-cl}86 CQ-tested code as a foundation.[all …]
7 See [Creating a CL for Chromium OS Developers](CONTRIBUTING.md#chromiumos-cl).12 crosvm mdbook.17 [postsubmit merging](CONTRIBUTING.md#chromiumos-postsubmit)
5 - 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
3 set -e7 if [ -f ./mdbook ]; then8 ./mdbook build10 mdbook build13 if [ ! -d node_modules ]; then
6 - main11 runs-on: ubuntu-20.0413 group: ${{ github.workflow }}-${{ github.ref }}15 - uses: actions/checkout@v217 - name: Setup mdBook18 uses: peaceiris/actions-mdbook@v120 mdbook-version: 'latest'21 - name: Install Dependencies23 ./tools/install-deps24 - name: Run mdbook[all …]
6 - master8 - book/**9 - .github/workflows/site.yml14 runs-on: ubuntu-latest16 - uses: actions/checkout@v218 - name: Get mdBook21 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 book24 book/mdbook --version[all …]
1 set -ex4 rustup component add clippy-preview13 cargo install mdbook --no-default-features14 cargo install mdbook-linkcheck15 sudo apt-get update16 sudo apt-get install python-pip17 sudo pip install python-dateutil
1 set -ex8 cargo clippy --all -- -D warnings11 cargo doc --features "$FEATURES" --all --no-deps13 mdbook build15 cp -r book/book/html/ target/doc/book/16 travis-cargo doc-upload || true18 cargo fmt --all -- --check21 cargo build -Z minimal-versions23 export RUSTFLAGS="-D warnings"25 cargo build --features "$FEATURES" $BUILD_ARGS[all …]
10 command = "mdbook-mermaid"14 additional-js = ["mermaid.min.js", "mermaid-init.js"]
3 # Use of this source code is governed by a BSD-style license that can be7 ./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"