Skip to content

Commit

Permalink
Resolve Installation Failure in AggregateReports job by updating pip …
Browse files Browse the repository at this point in the history
…install params (#16999)

* invoke pip installation with --user on windows within analyze_deps.yml
  • Loading branch information
scbedd authored Mar 2, 2021
1 parent 87ec5bf commit c3b472d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion eng/pipelines/aggregate-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
- template: ./templates/variables/globals.yml

pool:
vmImage: 'windows-2019'
name: azsdk-pool-mms-win-2019-general
vmImage: MMS2019

steps:
- template: /eng/pipelines/templates/steps/analyze_dependency.yml
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/templates/steps/analyze_dependency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ steps:
inputs:
versionSpec: '$(PythonVersion)'

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

0 comments on commit c3b472d

Please sign in to comment.