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
27 lines
509 B
Bash
Executable file
27 lines
509 B
Bash
Executable file
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is for building mar and mbsdiff
|
|
|
|
COMPRESS_EXT=zst
|
|
|
|
cd $GECKO_PATH
|
|
|
|
export MOZ_OBJDIR=obj-mar
|
|
|
|
echo ac_add_options --enable-project=tools/update-packaging > .mozconfig
|
|
|
|
TOOLCHAINS="binutils clang"
|
|
|
|
for t in $TOOLCHAINS; do
|
|
PATH="$MOZ_FETCHES_DIR/$t/bin:$PATH"
|
|
done
|
|
|
|
./mach build -v
|
|
|
|
mkdir mar-tools
|
|
cp $MOZ_OBJDIR/dist/host/bin/{mar,mbsdiff} mar-tools/
|
|
|
|
tar -acf mar-tools.tar.$COMPRESS_EXT mar-tools/
|
|
mkdir -p $UPLOAD_DIR
|
|
cp mar-tools.tar.$COMPRESS_EXT $UPLOAD_DIR
|