Skip to content

Commit

Permalink
Update perf run yaml with changes for crank on helix (dotnet#90368)
Browse files Browse the repository at this point in the history
  • Loading branch information
caaavik-msft authored Aug 11, 2023
1 parent bb9ba7a commit bbe40f8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions eng/pipelines/coreclr/templates/run-performance-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,11 @@ jobs:
displayName: Performance Setup (Unix)
condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT'))
continueOnError: ${{ parameters.continueOnError }}
- script: wget https://bootstrap.pypa.io/pip/3.6/get-pip.py && $(Python) get-pip.py --user
displayName: Ensure pip is installed (non-Windows)
condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT'))
- script: $(Python) -m pip install --user dataclasses
displayName: Install dataclasses library used in ci_setup.py
- script: $(Python) $(PerformanceDirectory)/scripts/ci_setup.py $(SetupArguments) ${{ parameters.additionalSetupParameters }}
displayName: Run ci setup script
# Run perf testing in helix
Expand Down
5 changes: 5 additions & 0 deletions eng/pipelines/coreclr/templates/run-scenarios-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ jobs:
condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT'))
continueOnError: ${{ parameters.continueOnError }}
# run ci-setup
- script: wget https://bootstrap.pypa.io/pip/3.6/get-pip.py && $(Python) get-pip.py --user
displayName: Ensure pip is installed (non-Windows)
condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT'))
- script: $(Python) -m pip install --user dataclasses
displayName: Install dataclasses library used in ci_setup.py
- script: $(Python) $(PerformanceDirectory)\scripts\ci_setup.py $(SetupArguments) $(ExtraSetupArguments) --output-file $(WorkItemDirectory)\machine-setup.cmd
displayName: Run ci setup script (Windows)
condition: and(succeeded(), eq(variables['Agent.Os'], 'Windows_NT'))
Expand Down

0 comments on commit bbe40f8

Please sign in to comment.