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
12 lines
289 B
Bash
Executable file
12 lines
289 B
Bash
Executable file
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is creating an artifact containing llvm-symbolizer.
|
|
|
|
mkdir llvm-symbolizer
|
|
cp $MOZ_FETCHES_DIR/clang/bin/llvm-symbolizer* llvm-symbolizer/
|
|
|
|
tar caf llvm-symbolizer.tar.zst llvm-symbolizer
|
|
|
|
mkdir -p $UPLOAD_DIR
|
|
mv llvm-symbolizer.tar.zst $UPLOAD_DIR
|