mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
ab0ad4caa0
Both libraries have previously been built as part of ci/build_environment/Makefile. This CL moves that behavior into the build.rs file of rutabaga_gfx. This is the last third party dependency that we need to build from source, and allows us to build/test on the host machine instead of requiring the builder container. It also allows us to greatly simplify the builder containers, which I will do in a follow-up CL as we also need to upgrade them to bullseye. This CL uprevs virglrenderer to include: https://gitlab.freedesktop.org/virgl/virglrenderer/-/merge_requests/609 and minigbm to include: https://crrev.com/c/3141018 BUG=b:196059146 TEST=./test_all && ./run_tests --run-privileged Change-Id: I4442ccc991d13a3fcfa224de50e916b3926f0cb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3141771 Commit-Queue: Dennis Kempin <denniskempin@google.com> Tested-by: Dennis Kempin <denniskempin@google.com> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
9 lines
314 B
Bash
Executable file
9 lines
314 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.
|
|
#
|
|
# Runs tests for both x86 and aarch64.
|
|
|
|
time ./ci/builder "$@" --vm ./run_tests &&
|
|
time ./ci/aarch64_builder "$@" --vm ./run_tests
|