Skip to content

Commit c3b472d

Browse files
authored
Resolve Installation Failure in AggregateReports job by updating pip install params (#16999)
* invoke pip installation with --user on windows within analyze_deps.yml
1 parent 87ec5bf commit c3b472d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

eng/pipelines/aggregate-reports.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
- template: ./templates/variables/globals.yml
1515

1616
pool:
17-
vmImage: 'windows-2019'
17+
name: azsdk-pool-mms-win-2019-general
18+
vmImage: MMS2019
1819

1920
steps:
2021
- template: /eng/pipelines/templates/steps/analyze_dependency.yml

eng/pipelines/templates/steps/analyze_dependency.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ steps:
44
inputs:
55
versionSpec: '$(PythonVersion)'
66

7-
- script: |
8-
pip install -r eng/ci_tools.txt
7+
- pwsh: |
8+
pip install -r eng/ci_tools.txt $(if($IsWindows) {"--user" })
99
ward scan -d $(Build.SourcesDirectory) -c $(Build.SourcesDirectory)/eng/.docsettings.yml
1010
displayName: 'Verify Readmes'
1111

0 commit comments

Comments
 (0)