forked from mirrors/gecko-dev
Now that docker images have been upgraded to Debian buster, we can install a native zstd binary and use tar's native support rather than relying on piping the output of tar to a python script that uses the python-zstandard module. At least we can do that for toolchain tasks that run on such docker images, which also means we can't on Mac and Windows. Differential Revision: https://phabricator.services.mozilla.com/D112894
21 lines
654 B
Bash
Executable file
21 lines
654 B
Bash
Executable file
#!/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 cavf $UPLOAD_DIR/android-sdk-linux.tar.zst -C /builds/worker/.mozbuild android-sdk-linux
|
|
|
|
ls -al $UPLOAD_DIR
|