Skip to content

Commit

Permalink
Formatting/Comment Corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaMankal-MS committed Nov 14, 2024
1 parent 9c5bd10 commit c0d7fd3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Misc/UpdateAgentPackage.template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<AddTaskPackageData packageType="pipelines-agent" platform="win-x86" version="<AGENT_VERSION>" hashValue="<HASH_VALUE>" downloadUrl="https://vstsagentpackage.azureedge.net/agent/<AGENT_VERSION>/pipelines-agent-win-x86-<AGENT_VERSION>.zip" infoUrl="https://go.microsoft.com/fwlink/?LinkId=798199" filename="pipelines-agent-win-x86-<AGENT_VERSION>.zip" />
</StepData>
</ServicingStep>
<ServicingStep name="Add ARM64 Windows agent package (without Node 6)" stepPerformer="DistributedTask" stepType="AddTaskPackage">
<ServicingStep name="Add ARM64 Windows agent package (without Node 6 and Node 10)" stepPerformer="DistributedTask" stepType="AddTaskPackage">
<StepData>
<AddTaskPackageData packageType="pipelines-agent" platform="win-arm64" version="<AGENT_VERSION>" hashValue="<HASH_VALUE>" downloadUrl="https://vstsagentpackage.azureedge.net/agent/<AGENT_VERSION>/pipelines-agent-win-arm64-<AGENT_VERSION>.zip" infoUrl="https://go.microsoft.com/fwlink/?LinkId=798199" filename="pipelines-agent-win-arm64-<AGENT_VERSION>.zip" />
</StepData>
Expand Down
2 changes: 1 addition & 1 deletion src/Misc/externals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ elif [[ "$PACKAGERUNTIME" == "win-arm64" || "$PACKAGERUNTIME" == "win-arm32" ]];
acquireExternalTool "$CONTAINER_URL/git-lfs/${LFS_VERSION}/win-arm${BIT}/git-lfs.exe" "git/mingw${BIT}/bin"
acquireExternalTool "$CONTAINER_URL/pdbstr/win-arm${BIT}/1/pdbstr.zip" pdbstr
acquireExternalTool "$CONTAINER_URL/symstore/win-arm${BIT}/1/symstore.zip" symstore
acquireExternalTool "$CONTAINER_URL/vstsom/m153_47c0856d_adhoc/vstsom.zip" tf # Custom package. Will the same work for Win ARM 64?
acquireExternalTool "$CONTAINER_URL/vstsom/m153_47c0856d_adhoc/vstsom.zip" tf
acquireExternalTool "$CONTAINER_URL/vswhere/2_8_4/vswhere.zip" vswhere
acquireExternalTool "https://dist.nuget.org/win-x86-commandline/v3.4.4/nuget.exe" nuget

Expand Down
2 changes: 0 additions & 2 deletions src/dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ function detect_platform_and_runtime_id() {
DETECTED_RUNTIME_ID='win-x86'
elif [[ "$PROCESSOR_ARCHITECTURE" == 'ARM64' ]]; then
DETECTED_RUNTIME_ID='win-arm64'
## elif [[ "$PROCESSOR_ARCHITECTURE" == 'AMD64' ]]; then
## DETECTED_RUNTIME_ID='win-arm64'
fi
elif [[ "$CURRENT_PLATFORM" == 'linux' ]]; then
DETECTED_RUNTIME_ID="linux-x64"
Expand Down

0 comments on commit c0d7fd3

Please sign in to comment.