mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
This change also fixes a warning with the drm repo URL being redirected. The warning about detached HEADs while building the crosvm-base image is supressed. BUG=None TEST=docker/build_crosvm_base.sh && docker/wrapped_smoke_test.sh Change-Id: Ia0d39717769d53ec43bf120b2100dd7b9fa9acfb Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2295844 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Auto-Submit: Zach Reizner <zachr@chromium.org>
34 lines
998 B
Bash
Executable file
34 lines
998 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2019 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.
|
|
|
|
cd "${0%/*}"
|
|
|
|
remotes=(
|
|
"https://github.com/mesonbuild/meson"
|
|
"https://github.com/anholt/libepoxy.git"
|
|
"https://chromium.googlesource.com/chromiumos/third_party/tpm2"
|
|
"https://chromium.googlesource.com/chromiumos/platform2"
|
|
"https://chromium.googlesource.com/chromiumos/third_party/adhd"
|
|
"https://gitlab.freedesktop.org/mesa/drm.git/"
|
|
"https://android.googlesource.com/platform/external/minijail"
|
|
)
|
|
|
|
keys=(
|
|
"MESON_COMMIT"
|
|
"LIBEPOXY_COMMIT"
|
|
"TPM2_COMMIT"
|
|
"PLATFORM2_COMMIT"
|
|
"ADHD_COMMIT"
|
|
"DRM_COMMIT"
|
|
"MINIJAIL_COMMIT"
|
|
)
|
|
|
|
for (( i=0; i<${#remotes[*]}; ++i)); do
|
|
remote="${remotes[$i]}"
|
|
key="${keys[$i]}"
|
|
remote_chunk=$(git ls-remote --exit-code "${remote}" refs/heads/master)
|
|
commit=$(echo "${remote_chunk}" | cut -f 1 -)
|
|
echo $key=$commit
|
|
done
|