2021-01-27 00:14:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2021 The Chromium OS Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
source "$(dirname $0)/common.sh"
|
|
|
|
|
2021-11-17 22:39:52 +00:00
|
|
|
./tools/dev_container --hermetic bash -c "\
|
|
|
|
./tools/run_tests --target=host -v \
|
2021-10-15 21:50:31 +00:00
|
|
|
&& ./tools/clippy \
|
2021-11-01 14:57:53 +00:00
|
|
|
&& ./tools/fmt --check \
|
2022-02-03 21:20:41 +00:00
|
|
|
&& cargo build --verbose --no-default-features \
|
2021-11-29 03:36:40 +00:00
|
|
|
&& mdbook build ./docs/book \
|
|
|
|
&& ./tools/cargo-doc"
|