diff options
Diffstat (limited to 'taskcluster/scripts/misc/repack-android-sdk-linux.sh')
-rwxr-xr-x | taskcluster/scripts/misc/repack-android-sdk-linux.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/taskcluster/scripts/misc/repack-android-sdk-linux.sh b/taskcluster/scripts/misc/repack-android-sdk-linux.sh new file mode 100755 index 0000000000..08d9973677 --- /dev/null +++ b/taskcluster/scripts/misc/repack-android-sdk-linux.sh @@ -0,0 +1,21 @@ +#!/bin/bash +set -x -e -v + +# This script is for fetching and repacking the Android SDK (for +# Linux), the tools required to produce Android packages. + +UPLOAD_DIR=$HOME/project/gecko/android-sdk + +mkdir -p $HOME/artifacts $UPLOAD_DIR + +# Populate /builds/worker/.mozbuild/android-sdk-linux. +cd $GECKO_PATH +./mach python python/mozboot/mozboot/android.py --artifact-mode --no-interactive + +# It's nice to have the build logs include the state of the world upon +# completion. +/builds/worker/.mozbuild/android-sdk-linux/tools/bin/sdkmanager --list + +tar cv -C /builds/worker/.mozbuild android-sdk-linux | $GECKO_PATH/taskcluster/scripts/misc/zstdpy > $UPLOAD_DIR/android-sdk-linux.tar.zst + +ls -al $UPLOAD_DIR |