summary refs log tree commit diff
path: root/docker/upgrade_checkout_commits.sh
blob: 44323a7cbab2024492d2c39018dd489a5856cb7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/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.

set -ex
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"
)

keys=(
    "MESON_COMMIT"
    "LIBEPOXY_COMMIT"
    "TPM2_COMMIT"
    "PLATFORM2_COMMIT"
)

for remote in "${remotes[@]}"; do
    remote_chunk=$(git ls-remote --exit-code "${remote}" refs/heads/master)
    commit=$(echo "${remote_chunk}" | cut -f 1 -)
    echo $commit
done