forked from mirrors/gecko-dev
This introduces a toolchain task that just re-exposes the hostutils from tooltool, which means adding that task as dependency of the relevant tests gets it automatically. We can then get the hostutils from MOZ_FETCHES_DIR directly. Differential Revision: https://phabricator.services.mozilla.com/D205424
14 lines
267 B
Bash
Executable file
14 lines
267 B
Bash
Executable file
#!/bin/sh
|
|
|
|
artifact=$(basename "$TOOLCHAIN_ARTIFACT")
|
|
project=${artifact%.tar.*}
|
|
|
|
cd $GECKO_PATH
|
|
|
|
. taskcluster/scripts/misc/tooltool-download.sh
|
|
|
|
cd $MOZ_FETCHES_DIR
|
|
mv host-utils-* $project
|
|
tar -acvf $artifact $project
|
|
mkdir -p $UPLOAD_DIR
|
|
mv $artifact $UPLOAD_DIR
|