Bug 1798926 - Fix resource link for 'fetch-arcanist' task; r=glandium

Differential Revision: https://phabricator.services.mozilla.com/D161438
This commit is contained in:
june wilde 2022-11-08 14:46:57 +00:00
Родитель dd02807d03
Коммит 309272b03d
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -23,7 +23,7 @@ arcanist:
description: checkout of arcanist for running on Windows
fetch:
type: git
repo: https://github.com/phacility/arcanist.git
repo: https://github.com/phacility/arcanist
revision: a028291f8e5e79b6446ad67ed8b0be9c5ec8f029
depot_tools:
description: Google's depot_tools package

Просмотреть файл

@ -26,7 +26,7 @@ mv depot_tools.git depot_tools
# Generating a new version of the preloaded depot_tools download can be done by:
# 1) Running the task, uncommenting the variable assignment below, uncommenting the
# 1) Running the task, uncommenting the variable assignment below, uncommenting the
# _GENERATE_DEPOT_TOOLS_BINARIES_ section in taskcluster/ci/updatebot/kind.yml,
# and ensuring that an angle update will actually take place (so it downloads the depot_tools)
# 2) Downloading and sanity-checking the depot_tools-preloaded-binaries-GIT_HASH-DATE.zip artifact
@ -53,13 +53,13 @@ fi
cp "$MOZ_FETCHES_DIR/vcruntime140.dll" "$MOZ_FETCHES_DIR/php-win"
cp "$GECKO_PATH/taskcluster/docker/updatebot/windows-php.ini" "$MOZ_FETCHES_DIR/php-win/php.ini"
cd "$MOZ_FETCHES_DIR/arcanist.git"
cd "$MOZ_FETCHES_DIR/arcanist"
patch -p1 < "$GECKO_PATH/taskcluster/docker/updatebot/arcanist_windows_stream.patch"
patch -p1 < "$GECKO_PATH/taskcluster/docker/updatebot/arcanist_patch_size.patch"
cd "$MOZ_FETCHES_DIR"
export PATH="$MOZ_FETCHES_PATH/php-win:$PATH"
export PATH="$MOZ_FETCHES_PATH/arcanist.git/bin:$PATH"
export PATH="$MOZ_FETCHES_PATH/arcanist/bin:$PATH"
# get Updatebot
cd "$MOZ_FETCHES_DIR"