repack-android-sdk-linux.sh (468B)
1 #!/bin/bash 2 set -x -e -v 3 4 # This script is for fetching and repacking the Android SDK (for 5 # Linux), the tools required to produce Android packages. 6 7 mkdir -p $UPLOAD_DIR 8 9 # Populate /builds/worker/.mozbuild/android-sdk-linux. 10 cd $GECKO_PATH 11 ./mach python python/mozboot/mozboot/android.py --artifact-mode --no-interactive --list-packages 12 13 tar cavf $UPLOAD_DIR/android-sdk-linux.tar.zst -C /builds/worker/.mozbuild android-sdk-linux bundletool.jar 14 15 ls -al $UPLOAD_DIR