Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve Installation Failure in AggregateReports job by updating pip install params #16999

Merged
merged 8 commits into from
Mar 2, 2021
Merged
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