Bug 1821117 [wpt PR 38888] - Expose desired{Execution|Render}Start in LoAF+ScriptTimi...
[gecko.git] / taskcluster / scripts / misc / repack-android-sdk-linux.sh
blob58532c71fd4ab32aa372c64e3ecffc840fa8e7a3
1 #!/bin/bash
2 set -x -e -v
4 # This script is for fetching and repacking the Android SDK (for
5 # Linux), the tools required to produce Android packages.
7 UPLOAD_DIR=$HOME/project/gecko/android-sdk
9 mkdir -p $HOME/artifacts $UPLOAD_DIR
11 # Populate /builds/worker/.mozbuild/android-sdk-linux.
12 cd $GECKO_PATH
13 ./mach python python/mozboot/mozboot/android.py --artifact-mode --no-interactive --list-packages
15 tar cavf $UPLOAD_DIR/android-sdk-linux.tar.zst -C /builds/worker/.mozbuild android-sdk-linux bundletool.jar
17 ls -al $UPLOAD_DIR