Esempio n. 1
0
 /// <summary>Sets timing limit to detect long-running benchmarks.</summary>
 /// <param name="config">The config.</param>
 /// <param name="value">Timing limit to detect long-running benchmarks.</param>
 /// <returns>A new config with applied parameters.</returns>
 public static ICompetitionConfig WithLongRunningBenchmarkLimit(this ICompetitionConfig config, TimeSpan value) =>
 config.WithModifier(
     new CompetitionOptions
 {
     Checks =
     {
         LongRunningBenchmarkLimit = value
     }
 });
Esempio n. 2
0
 /// <summary>Report warnings as errors.</summary>
 /// <param name="config">The config.</param>
 /// <param name="value"><c>true</c> if competition warnings should be reported as errors.</param>
 /// <returns>A new config with applied parameters.</returns>
 public static ICompetitionConfig WithReportWarningsAsErrors(this ICompetitionConfig config, bool value) =>
 config.WithModifier(
     new CompetitionOptions
 {
     RunOptions =
     {
         ReportWarningsAsErrors = value
     }
 });
Esempio n. 3
0
 /// <summary>Allow debug builds to be used in competitions.</summary>
 /// <param name="config">The config.</param>
 /// <param name="value"><c>true</c> if debug builds allowed.</param>
 /// <returns>A new config with applied parameters.</returns>
 public static ICompetitionConfig WithAllowDebugBuilds(this ICompetitionConfig config, bool value) =>
 config.WithModifier(
     new CompetitionOptions
 {
     RunOptions =
     {
         AllowDebugBuilds = value
     }
 });
Esempio n. 4
0
 /// <summary>Enables or disables detailed logging.</summary>
 /// <param name="config">The config.</param>
 /// <param name="value"><c>true</c> if detailed logging enabled.</param>
 /// <returns>A new config with applied parameters.</returns>
 public static ICompetitionConfig WithDetailedLogging(this ICompetitionConfig config, bool value) =>
 config.WithModifier(
     new CompetitionOptions
 {
     RunOptions =
     {
         DetailedLogging = value
     }
 });
Esempio n. 5
0
 /// <summary>URI of the log that contains competition limits from previous run(s).</summary>
 /// <param name="config">The config.</param>
 /// <param name="value">
 /// URI of the log that contains competition limits from previous run(s).
 /// Relative paths, file paths and web URLs are supported.
 /// Set the <see cref="CompetitionAnnotationMode.LogAnnotations"/> to <c>true</c> to enable logged annotations.
 /// </param>
 /// <returns>A new config with applied parameters.</returns>
 public static ICompetitionConfig WithPreviousRunLogUri(this ICompetitionConfig config, string value) =>
 config.WithModifier(
     new CompetitionOptions
 {
     Annotations =
     {
         PreviousRunLogUri = value
     }
 });