forked from mirrors/gecko-dev
We leave the following ones unchanged: - geckodriver because the results are used to releases on github. - sixgill because the script that creates it is not in-tree. - *-dist-toolchain because sccache is not expecting a .tar.zst. We use native tar support in most cases, except for toolchain scripts also used on Windows, for which we use our zstdpy script. Differential Revision: https://phabricator.services.mozilla.com/D124733
19 lines
372 B
Bash
Executable file
19 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 caf /builds/worker/artifacts/browsertime.tar.zst browsertime
|