blob: 4d8d2ade3eae7511d2b5935eb1d42f2b0ce62dd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
set -x -e -v
export PATH="$MOZ_FETCHES_DIR/rustc/bin:$PATH"
cd $MOZ_FETCHES_DIR/rust-makecab
cargo build --verbose --release
mkdir makecab
cp target/release/makecab makecab/
tar -c makecab | $GECKO_PATH/taskcluster/scripts/misc/zstdpy > makecab.tar.zst
mkdir -p $UPLOAD_DIR
cp makecab.tar.zst $UPLOAD_DIR
|