This patch changes the browsertime archive built as a toolchain from a .zip archive to a .tar.bz2 archive to prevent the large amount of verbose unpacking output we currently see. Differential Revision: https://phabricator.services.mozilla.com/D50995
20 lines
372 B
Bash
Executable File
20 lines
372 B
Bash
Executable File
#!/bin/bash -vex
|
|
|
|
set -x -e
|
|
|
|
echo "running as" $(id)
|
|
|
|
set -v
|
|
|
|
cd $GECKO_PATH
|
|
|
|
export PATH=$PATH:$MOZ_FETCHES_DIR/node/bin
|
|
|
|
./mach browsertime --setup
|
|
|
|
# We have tools/browsertime/{package.json,node_modules,...} and want
|
|
# browsertime/{package.json,node_modules}.
|
|
mkdir -p /builds/worker/artifacts
|
|
cd tools
|
|
tar cjf /builds/worker/artifacts/browsertime.tar.bz2 browsertime
|