Colin Cross | 4c80838 | 2019-11-13 11:16:07 -0800 | [diff] [blame] | 1 | #!/bin/bash -e |
| 2 | |
Colin Cross | 9297fad | 2020-08-10 12:18:51 -0700 | [diff] [blame] | 3 | # Copyright 2020 Google Inc. All rights reserved. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Colin Cross | 4c80838 | 2019-11-13 11:16:07 -0800 | [diff] [blame] | 17 | if [ -z $1 ]; then |
| 18 | echo "usage: $0 <build number>" |
| 19 | exit 1 |
| 20 | fi |
| 21 | |
| 22 | readonly BUILD_NUMBER=$1 |
| 23 | |
| 24 | cd "$(dirname $0)" |
| 25 | |
| 26 | if ! git diff HEAD --quiet; then |
| 27 | echo "must be run with a clean prebuilts/build-tools project" |
| 28 | exit 1 |
| 29 | fi |
| 30 | |
| 31 | readonly tmpdir=$(mktemp -d) |
| 32 | |
| 33 | function finish { |
| 34 | if [ ! -z "${tmpdir}" ]; then |
| 35 | rm -rf "${tmpdir}" |
| 36 | fi |
| 37 | } |
| 38 | trap finish EXIT |
| 39 | |
| 40 | function fetch_artifact() { |
Dan Willemsen | 60a0c41 | 2020-04-30 21:46:50 -0700 | [diff] [blame] | 41 | /google/data/ro/projects/android/fetch_artifact --branch aosp-build-tools-release --bid ${BUILD_NUMBER} --target $1 "$2" "$3" |
Colin Cross | 4c80838 | 2019-11-13 11:16:07 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | fetch_artifact linux build-prebuilts.zip "${tmpdir}/linux.zip" |
| 45 | fetch_artifact linux build-common-prebuilts.zip "${tmpdir}/common.zip" |
| 46 | fetch_artifact linux manifest_${BUILD_NUMBER}.xml "${tmpdir}/manifest.xml" |
| 47 | fetch_artifact darwin_mac build-prebuilts.zip "${tmpdir}/darwin.zip" |
| 48 | |
| 49 | function unzip_to() { |
| 50 | rm -rf "$1" |
| 51 | mkdir "$1" |
| 52 | unzip -q -d "$1" "$2" |
| 53 | } |
| 54 | |
| 55 | unzip_to linux-x86 "${tmpdir}/linux.zip" |
| 56 | unzip_to common "${tmpdir}/common.zip" |
| 57 | unzip_to darwin-x86 "${tmpdir}/darwin.zip" |
| 58 | |
| 59 | cp -f "${tmpdir}/manifest.xml" manifest.xml |
| 60 | |
| 61 | git add manifest.xml linux-x86 darwin-x86 common |
| 62 | git commit -m "Update build-tools to ab/${BUILD_NUMBER} |
| 63 | |
Dan Willemsen | 60a0c41 | 2020-04-30 21:46:50 -0700 | [diff] [blame] | 64 | https://ci.android.com/builds/branches/aosp-build-tools-release/grid?head=${BUILD_NUMBER}&tail=${BUILD_NUMBER} |
Colin Cross | 4c80838 | 2019-11-13 11:16:07 -0800 | [diff] [blame] | 65 | |
| 66 | Test: treehugger" |