You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
* Initial work to enable CoreFx perf rolling runs on Linux.
* Need to escape the '$' character.
* Missing a `./` in front of the `build-managed.sh`
* missing sudo prefix.
* Fixing typo.
* Making `dotnet` executable in order to fix `Permission denied` errors.
* Skipping performance test that hangs on Unix.
* Bumping version of the xUnit Performance Api.
- This version contains a fix that removes the `virtual` call from the InnerIterations getter, thus reducing the overhead around the benchmarks.
* Removing unnecessary code from groovy file.
stringParam('BenchviewCommitName', '\${ghprbPullTitle}', 'The name that you will be used to build the full title of a run in Benchview. The final name will be of the form <branch> private BenchviewCommitName')
70
75
}
71
76
}
72
-
parameters
73
-
{
74
-
stringParam('XUNIT_PERFORMANCE_MAX_ITERATION', '100', 'Set the maximum number of iterations that a test can execute')
77
+
78
+
parameters {
79
+
stringParam('XUNIT_PERFORMANCE_MAX_ITERATION', '21', 'Sets the number of iterations to twenty one. We are doing this to limit the amount of data that we upload as 20 iterations is enought to get a good sample')
80
+
stringParam('XUNIT_PERFORMANCE_MAX_ITERATION_INNER_SPECIFIED', '21', 'Sets the number of iterations to twenty one. We are doing this to limit the amount of data that we upload as 20 iterations is enought to get a good sample')
75
81
}
82
+
76
83
def configuration ='Release'
77
84
def runType = isPR ?'private':'rolling'
78
-
def benchViewName = isPR ?'corefx private %BenchviewCommitName%':'corefx rolling %GIT_BRANCH_WITHOUT_ORIGIN% %GIT_COMMIT%'
79
-
80
-
steps {
81
-
//We need to specify the max cpu count to be one as we do not want to be executing performance tests in parallel
82
-
batchFile("call \"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x86 && build.cmd -release")
0 commit comments