fune/taskcluster/scripts/misc/get-hostutils.sh
Mike Hommey 6393a05402 Bug 1886927 - Avoid getting hostutils.manifest off hg.mozilla.org. r=jmaher
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
2024-03-22 20:34:15 +00:00

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