tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

repack-jdk-linux.sh (347B)


      1 #!/bin/bash
      2 set -x -e -v
      3 
      4 # This script is for fetching and repacking the OpenJDK (for
      5 # Linux)
      6 
      7 AVD_JSON_CONFIG="$1"
      8 
      9 mkdir -p $UPLOAD_DIR
     10 
     11 # Populate /builds/worker/.mozbuild/jdk
     12 cd $GECKO_PATH
     13 ./mach python python/mozboot/mozboot/android.py --jdk-only
     14 
     15 tar cavf $UPLOAD_DIR/jdk-linux.tar.zst -C /builds/worker/.mozbuild jdk
     16 
     17 ls -al $UPLOAD_DIR