summaryrefslogtreecommitdiff
path: root/update-prebuilts.sh
blob: 9d77a1ae8bfc47ccc9221e6976546858853848d8 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash -e

if [ -z "$1" ]; then
    echo "usage: $0 <build number>"
    exit 1
fi
readonly BUILD_NUMBER="$1"

readonly AOSP_BRANCH='kernel-build-tools-2022'

cd "$(dirname $0)"

if ! git diff HEAD --quiet; then
    echo "must be run with a clean prebuilts/kernel-build-tools project"
    exit 1
fi

readonly tmpdir=$(mktemp -d)

function finish {
    if [ ! -z "${tmpdir}" ]; then
        rm -rf "${tmpdir}"
    fi
}
trap finish EXIT

function fetch_artifact() {
    /google/data/ro/projects/android/fetch_artifact --branch "aosp_$AOSP_BRANCH" --bid ${BUILD_NUMBER} --target $1 "$2" "$3"
}

fetch_artifact linux build-prebuilts.zip "${tmpdir}/linux.zip"
fetch_artifact linux manifest_${BUILD_NUMBER}.xml "${tmpdir}/manifest.xml"

function unzip_to() {
    rm -rf "$1"
    mkdir "$1"
    unzip -q -d "$1" "$2"
}

unzip_to linux-x86 "${tmpdir}/linux.zip"

cp -f "${tmpdir}/manifest.xml" manifest.xml

git add manifest.xml linux-x86
git commit -m "Update $AOSP_BRANCH to ab/${BUILD_NUMBER}

https://ci.android.com/builds/branches/aosp_$AOSP_BRANCH/grid?head=${BUILD_NUMBER}&tail=${BUILD_NUMBER}

Test: treehugger"