-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Split Perf Helix Workitem #39859
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
Merged
Merged
Split Perf Helix Workitem #39859
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1f1c7e0
wip
ooooolivia 4498d38
split perf jobs into test categories
ooooolivia 89d2b5f
add test category to run-performance-job.yml
ooooolivia cb0d3f5
correct space
ooooolivia addd830
add space to parameter var
ooooolivia 396c435
add $
ooooolivia 6b0988b
fix yaml
ooooolivia bbff7be
revert extraparameters
ooooolivia eaa41dc
replace crossgen runkind
ooooolivia d465749
change micro_mono tag
ooooolivia 694ebd1
remove space
ooooolivia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| <Project Sdk="Microsoft.DotNet.Helix.Sdk" DefaultTargets="Test"> | ||
|
|
||
| <PropertyGroup Condition="'$(AGENT_OS)' == 'Windows_NT'"> | ||
| <Python>py -3</Python> | ||
| <HelixPreCommands>$(HelixPreCommands);call %HELIX_CORRELATION_PAYLOAD%\performance\tools\machine-setup.cmd;set PYTHONPATH=%HELIX_WORKITEM_PAYLOAD%\scripts%3B%HELIX_WORKITEM_PAYLOAD%</HelixPreCommands> | ||
| <ArtifactsDirectory>%HELIX_CORRELATION_PAYLOAD%\artifacts\BenchmarkDotNet.Artifacts</ArtifactsDirectory> | ||
| <BaseDirectory>$HELIX_CORRELATION_PAYLOAD</BaseDirectory> | ||
| <PerformanceDirectory>$(BaseDirectory)/performance</PerformanceDirectory> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(AGENT_OS)' != 'Windows_NT'"> | ||
| <WorkItemCommand>$(PerformanceDirectory)/scripts/benchmarks_ci.py --csproj $(PerformanceDirectory)/$(TargetCsproj)</WorkItemCommand> | ||
| <CliArguments>--dotnet-versions $DOTNET_VERSION --cli-source-info args --cli-branch $PERFLAB_BRANCH --cli-commit-sha $PERFLAB_HASH --cli-repository https://github.com/$PERFLAB_REPO --cli-source-timestamp $PERFLAB_BUILDTIMESTAMP</CliArguments> | ||
| <Python>python3</Python> | ||
| <CoreRun>$(BaseDirectory)/Core_Root/corerun</CoreRun> | ||
| <HelixPreCommands>$(HelixPreCommands);chmod +x $(PerformanceDirectory)/tools/machine-setup.sh;. $(PerformanceDirectory)/tools/machine-setup.sh</HelixPreCommands> | ||
| <ArtifactsDirectory>$(BaseDirectory)/artifacts/BenchmarkDotNet.Artifacts</ArtifactsDirectory> | ||
| <BaselineArtifactsDirectory>$(BaseDirectory)/artifacts/BenchmarkDotNet.Artifacts_Baseline</BaselineArtifactsDirectory> | ||
| <ResultsComparer>$(PerformanceDirectory)/src/tools/ResultsComparer/ResultsComparer.csproj</ResultsComparer> | ||
| <DotnetExe>$(PerformanceDirectory)/tools/dotnet/$(Architecture)/dotnet</DotnetExe> | ||
| <Percent>%25</Percent> | ||
| <XMLResults>$HELIX_WORKITEM_ROOT/testResults.xml</XMLResults> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <HelixCorrelationPayload Include="$(CorrelationPayloadDirectory)"> | ||
| <PayloadDirectory>%(Identity)</PayloadDirectory> | ||
| </HelixCorrelationPayload> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(AGENT_OS)' == 'Windows_NT'"> | ||
| <HelixWorkItem Include="Crossgen System.Private.Xml.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen System.Linq.Expressions.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen Microsoft.CodeAnalysis.VisualBasic.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen Microsoft.CodeAnalysis.CSharp.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen System.Private.CoreLib.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen\test.py crossgen --test-name System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(AGENT_OS)' == 'Windows_NT' and '$(Architecture)' == 'x64'"> | ||
| <HelixWorkItem Include="Crossgen2 System.Private.Xml.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.Xml.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen2 System.Linq.Expressions.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Linq.Expressions.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen2 Microsoft.CodeAnalysis.VisualBasic.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.VisualBasic.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen2 Microsoft.CodeAnalysis.CSharp.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single Microsoft.CodeAnalysis.CSharp.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen2 System.Private.CoreLib.dll"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --single System.Private.CoreLib.dll --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| </HelixWorkItem> | ||
| <HelixWorkItem Include="Crossgen2 Composite Framework R2R"> | ||
| <PayloadDirectory>$(WorkItemDirectory)\ScenarioCorrelation</PayloadDirectory> | ||
| <Command>$(Python) %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\test.py crossgen2 --composite %HELIX_CORRELATION_PAYLOAD%\performance\src\scenarios\crossgen2\framework-r2r.dll.rsp --core-root %HELIX_CORRELATION_PAYLOAD%\Core_Root</Command> | ||
| <Timeout>1:00</Timeout> | ||
| </HelixWorkItem> | ||
| </ItemGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.