| #!/bin/bash |
| |
| # Copyright 2021 Google Inc. All rights reserved. |
| |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| LATEST_BUILD_ID=`curl "https://www.googleapis.com/android/internal/build/v3/builds?branch=aosp-main&buildAttemptStatus=complete&buildType=submitted&maxResults=1&successful=true&target=aosp_cf_x86_64_phone-trunk_staging-userdebug" 2>/dev/null | \ |
| python3 -c "import sys, json; print(json.load(sys.stdin)['builds'][0]['buildId'])"` |
| LATEST_BUILD_URL=`curl "https://www.googleapis.com/android/internal/build/v3/builds/$LATEST_BUILD_ID/aosp_cf_x86_64_phone-trunk_staging-userdebug/attempts/latest/artifacts/fetch_cvd/url" 2>/dev/null | \ |
| python3 -c "import sys, json; print(json.load(sys.stdin)['signedUrl'])"` |
| |
| DOWNLOAD_TARGET=`mktemp` |
| |
| curl "${LATEST_BUILD_URL}" -o $DOWNLOAD_TARGET |
| |
| chmod +x $DOWNLOAD_TARGET |
| |
| exec $DOWNLOAD_TARGET $@ |