We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9037880 commit 2a1ffffCopy full SHA for 2a1ffff
1 file changed
tools/ci_build/github/azure-pipelines/stages/plugin-win-webgpu-stage.yml
@@ -63,6 +63,11 @@ stages:
63
value: 'Visual Studio 17 2022'
64
- name: CrossCompileDefines
65
value: ''
66
+ - name: ArchFlag
67
+ ${{ if eq(parameters.arch, 'arm64') }}:
68
+ value: '--arm64'
69
+ ${{ else }}:
70
+ value: ''
71
steps:
72
- checkout: self
73
clean: true
@@ -132,6 +137,7 @@ stages:
132
137
inputs:
133
138
scriptPath: '$(Build.SourcesDirectory)\tools\ci_build\build.py'
134
139
arguments: >-
140
+ $(ArchFlag)
135
141
--config ${{ parameters.cmake_build_type }}
136
142
--build_dir $(Build.BinariesDirectory)
143
--skip_submodule_sync
0 commit comments