mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
This replaces the existing tooling at ./ci/ with the new tooling at ./tools. BUG=b:199951064 TEST=./ci/kokoro/simulate_all Change-Id: Id0296d5a46ca0f3eb0f655d85d1aed801ee3b434 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3226275 Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
10 lines
334 B
Bash
Executable file
10 lines
334 B
Bash
Executable file
#!/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"
|
|
|
|
./tools/dev_container bash -c "\
|
|
./tools/run_tests --target=host \
|
|
&& ./tools/clippy \
|
|
&& ./tools/fmt --check"
|