Skip to content

Commit c5a7658

Browse files
committed
Try passing arch to vsdownload.py instead
1 parent 3fcaa88 commit c5a7658

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

taskcluster/kinds/toolchain/vs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ vs-2022-x86_64:
2626
vs-2022-aarch64:
2727
description: "MS Visual Studio 2022 (aarch64)"
2828
worker-type: b-win11-2024h2-arm64
29-
worker:
30-
env:
31-
PROCESSOR_ARCHITECTURE: arm64 # Bug: I think the aarch64 workers set this incorrectly.
3229
treeherder:
3330
symbol: TL(vs-2022-aarch64)
3431
platform: windows/aarch64
3532
run:
33+
arguments:
34+
- --host-arch arm64
3635
toolchain-alias: vs-2022-aarch64
3736
toolchain-artifact: public/build/visual-studio-2022.zip

taskcluster/scripts/toolchain/download_vs.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ python $env:TASK_WORKDIR\vsdownload.py `
2929
--accept-license `
3030
--skip-recommended `
3131
--msvc-version $MSVC_VERSION `
32-
--dest "$env:TASK_WORKDIR\vs2022"
32+
--dest "$env:TASK_WORKDIR\vs2022" `
33+
@args
3334

3435
# Download additional extensions
3536
python "$env:VCS_PATH\scripts\windows\fetch-vsix-package.py" --ltsc-version $MSVC_VERSION --output "$env:TASK_WORKDIR\vs2022" $VS_EXTRA_PACKAGES

0 commit comments

Comments
 (0)