Skip to content

Commit 4edf2e6

Browse files
Fix Windows ARM64 CI build: remove duplicate Release config
The job template appends \ to buildScript, so including 'Release' after '-c' resulted in 'dotnet build ... -c Release Release', where the trailing 'Release' was interpreted as a project path (MSB1009). Remove the explicit 'Release' so the template provides it, matching the pattern used by the MacOS_arm64 job. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 628989d commit 4edf2e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
parameters:
9494
prepScript: echo "no prep needed"
9595
name: Windows_arm64
96-
buildScript: dotnet build /p:SkipCuda=true /p:TargetArchitecture=arm64 /p:SkipNetFxBuild=true -c Release
96+
buildScript: dotnet build /p:SkipCuda=true /p:TargetArchitecture=arm64 /p:SkipNetFxBuild=true -c
9797
testScript: echo "Cannot run ARM64 tests on x64 Azure Pipelines agent"
9898
pool:
9999
vmImage: 'windows-latest'

0 commit comments

Comments
 (0)