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

(#208) disable codecov #209

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
(#208) disable codecov
nils-a committed May 7, 2024
commit 4aeccf9d49164c7712e62cfe4207218e794bedac
1 change: 1 addition & 0 deletions recipe.cake
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ BuildParameters.SetParameters(
shouldUseDeterministicBuilds: true,
gitterMessage: "@/all " + standardNotificationMessage,
twitterMessage: standardNotificationMessage,
shouldRunCodecov: false,
preferredBuildProviderType: BuildProviderType.GitHubActions,
preferredBuildAgentOperatingSystem: PlatformFamily.Linux);


Unchanged files with check annotations Beta

public ConsoleColor ArgumentForeground { get; set; }
public ConsolePalette(ConsoleColor background, ConsoleColor foreground,

Check warning on line 19 in src/Cake.Module.Shared/CakeBuildLog/ConsolePalette.cs

GitHub Actions / Analyze (csharp)

ConsoleColor argumentBackground, ConsoleColor argumentForeground)

Check warning on line 20 in src/Cake.Module.Shared/CakeBuildLog/ConsolePalette.cs

GitHub Actions / Analyze (csharp)

The parameters should all be placed on the same line or each parameter should be placed on its own line. (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1117.md)
{
Background = background;
Foreground = foreground;
public int Position { get; }
public PropertyToken(int position, string format)

Check warning on line 16 in src/Cake.Module.Shared/CakeBuildLog/Formatting/PropertyToken.cs

GitHub Actions / Analyze (csharp)

{
Position = position;
Format = format;
/// </summary>
/// <param name="console">The <see cref="IConsole"/> implementation to log to.</param>
/// <param name="verbosity">Initial verbosity.</param>
public RawBuildLog(IConsole console, Verbosity verbosity = Verbosity.Normal)

Check warning on line 27 in src/Cake.Module.Shared/CakeBuildLog/RawBuildLog.cs

GitHub Actions / Analyze (csharp)

{
_console = console;
_lock = new object();
/// <param name="console">The <see cref="IConsole"/> implementation to log to.</param>
/// <param name="formatExpression">Expression to check whether a token should be colorized.</param>
/// <param name="verbosity">Initial verbosity.</param>
public ServiceMessageLog(IConsole console, Regex formatExpression, Verbosity verbosity = Verbosity.Normal)

Check warning on line 34 in src/Cake.Module.Shared/CakeBuildLog/ServiceMessageLog.cs

GitHub Actions / Analyze (csharp)

: this(console, verbosity)
{
_match = s => formatExpression.IsMatch(s);
/// Gets the <see cref="ICakeContext"/>.
/// </summary>
// ReSharper disable once SA1401
protected readonly ICakeContext _context;

Check warning on line 19 in src/Cake.Module.Shared/CakeReportPrinterBase.cs

GitHub Actions / Analyze (csharp)

/// <summary>
/// Gets the <see cref="IConsole"/>.
/// </summary>
// ReSharper disable once SA1401
protected readonly IConsole _console;

Check warning on line 25 in src/Cake.Module.Shared/CakeReportPrinterBase.cs

GitHub Actions / Analyze (csharp)

/// <summary>
/// Initializes a new instance of the <see cref="CakeReportPrinterBase"/> class.
/// </summary>
/// <param name="time">The <see cref="TimeSpan"/> to format.</param>
/// <returns>A formatted string.</returns>
protected static string FormatTime(TimeSpan time)

Check warning on line 120 in src/Cake.Module.Shared/CakeReportPrinterBase.cs

GitHub Actions / Analyze (csharp)

{
return time.ToString("c", CultureInfo.InvariantCulture);
}
_cakeLogImplementation = new CakeBuildLog(console, verbosity);
}
private readonly ICakeLog _cakeLogImplementation;

Check warning on line 25 in src/Cake.TeamCity.Module/TeamCityLog.cs

GitHub Actions / Analyze (csharp)

/// <inheritdoc />
public void Write(Verbosity verbosity, LogLevel level, string format, params object[] args)
}
/// <inheritdoc />
public Verbosity Verbosity

Check warning on line 56 in src/Cake.TeamCity.Module/TeamCityLog.cs

GitHub Actions / Analyze (csharp)

{
get { return _cakeLogImplementation.Verbosity; }
set { _cakeLogImplementation.Verbosity = value; }