mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
ba4adc0efb
This change adds python type and formatting checks and consolidates code health checks in ./tools/health-check. Dealing with relative imports in python is tricky, so we are making ./tools/impl a proper package with no directly executable files. Some of the bash shorthands in ./tools had to be converted to python for this. To make the new checks pass, we run the formatter and fix some mypy type checks. TEST=./tools/health-check BUG=b:218559722,b:219965702 Change-Id: Ie18d3d6dd2f5a033141e167a6e1aa762791941d6 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3558592 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
56 lines
1.1 KiB
Bash
Executable file
56 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env 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.
|
|
set -ex
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install --yes --no-install-recommends \
|
|
ca-certificates \
|
|
cloud-image-utils \
|
|
curl \
|
|
dpkg-dev \
|
|
expect \
|
|
gcc \
|
|
git \
|
|
jq \
|
|
libasound2-dev \
|
|
libclang-dev \
|
|
libdbus-1-dev \
|
|
libdrm-dev \
|
|
libepoxy-dev \
|
|
libssl-dev \
|
|
libwayland-dev \
|
|
libxext-dev \
|
|
make \
|
|
nasm \
|
|
ninja-build \
|
|
openssh-client \
|
|
pkg-config \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
qemu-system-x86 \
|
|
rsync \
|
|
screen \
|
|
wine64 \
|
|
gcc-mingw-w64-x86-64-win32 \
|
|
wayland-protocols
|
|
|
|
pip3 install \
|
|
meson \
|
|
mdformat \
|
|
argh \
|
|
mypy \
|
|
black
|
|
|
|
rustup component add clippy
|
|
rustup component add rustfmt
|
|
|
|
rustup target add x86_64-pc-windows-gnu
|
|
|
|
# The bindgen tool is required to build a crosvm dependency.
|
|
cargo install bindgen
|
|
|
|
# Install dependencies used to generate mdbook documentation.
|
|
$(dirname "$0")/install-docs-deps
|