Skip to content

Commit

Permalink
drop Appveyor and Codecov (#2321)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey authored Apr 20, 2021
1 parent 15887d9 commit 9558604
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 105 deletions.
21 changes: 0 additions & 21 deletions appveyor.yml

This file was deleted.

2 changes: 0 additions & 2 deletions build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
<ItemGroup>
<PackageReference Include="Cake.Coverlet" Version="2.5.4" />
<PackageReference Include="Cake.Frosting" Version="1.1.0" />
<PackageReference Include="Cake.Codecov" Version="1.0.1" />
<PackageReference Include="Codecov" Version="1.12.4" />
</ItemGroup>

</Project>
2 changes: 0 additions & 2 deletions build/Context.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ public class Context : FrostingContext
public BuildVersion Version { get; set; }

public DirectoryPath Artifacts { get; set; }
public DirectoryPath CodeCoverage { get; set; }

public bool IsLocalBuild { get; set; }
public bool IsPullRequest { get; set; }
public bool IsOriginalRepo { get; set; }
Expand Down
1 change: 0 additions & 1 deletion build/Lifetime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public override void Setup(Context context)
context.FormatCode = context.Argument("formatCode", false);

context.Artifacts = "./packaging/";
context.CodeCoverage = "./coverage-results/";

// Build system information.
var buildSystem = context.BuildSystem();
Expand Down
5 changes: 2 additions & 3 deletions build/Tasks/Clean.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ public override void Run(Context context)

var directories = context.GetDirectories("./**/bin", globberSettings)
+ context.GetDirectories("./**/obj", globberSettings)
+ context.Artifacts
+ context.CodeCoverage;
+ context.Artifacts;

foreach (var directory in directories)
{
context.CleanDirectory(directory);
}
}
}
}
75 changes: 0 additions & 75 deletions build/Tasks/CodeCoverage.cs

This file was deleted.

1 change: 0 additions & 1 deletion build/Tasks/Package.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

[Dependency(typeof(UnitTests))]
[Dependency(typeof(ConventionTests))]
[Dependency(typeof(CodeCoverage))]
[Dependency(typeof(ValidateLINQPadSamples))]
public sealed class Package : FrostingTask<Context>
{
Expand Down

0 comments on commit 9558604

Please sign in to comment.