mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
#addin "nuget:?package=CodeFileSanity&version=0.0.21"
|
|
#addin "nuget:?package=JetBrains.ReSharper.CommandLineTools&version=2018.2.2"
|
|
#tool "nuget:?package=NVika.MSBuild&version=1.0.1"
|
|
var nVikaToolPath = GetFiles("./tools/NVika.MSBuild.*/tools/NVika.exe").First();
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// ARGUMENTS
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
var target = Argument("target", "Build");
|
|
var configuration = Argument("configuration", "Release");
|
|
|
|
var rootDirectory = new DirectoryPath("..");
|
|
var solution = rootDirectory.CombineWithFilePath("osu.sln");
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// TASKS
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
Task("Compile")
|
|
.Does(() => {
|
|
DotNetCoreBuild(solution.FullPath, new DotNetCoreBuildSettings {
|
|
Configuration = configuration,
|
|
});
|
|
});
|
|
|
|
Task("Test")
|
|
.IsDependentOn("Compile")
|
|
.Does(() => {
|
|
var testAssemblies = GetFiles(rootDirectory + "/**/*.Tests/bin/**/*.Tests.dll");
|
|
|
|
DotNetCoreVSTest(testAssemblies, new DotNetCoreVSTestSettings {
|
|
Logger = AppVeyor.IsRunningOnAppVeyor ? "Appveyor" : $"trx",
|
|
Parallel = true,
|
|
ToolTimeout = TimeSpan.FromMinutes(10),
|
|
});
|
|
});
|
|
|
|
// windows only because both inspectcore and nvika depend on net45
|
|
Task("InspectCode")
|
|
.WithCriteria(IsRunningOnWindows())
|
|
.IsDependentOn("Compile")
|
|
.Does(() => {
|
|
InspectCode(solution, new InspectCodeSettings {
|
|
CachesHome = "inspectcode",
|
|
OutputFile = "inspectcodereport.xml",
|
|
});
|
|
|
|
StartProcess(nVikaToolPath, @"parsereport ""inspectcodereport.xml"" --treatwarningsaserrors");
|
|
});
|
|
|
|
Task("CodeFileSanity")
|
|
.Does(() => {
|
|
ValidateCodeSanity(new ValidateCodeSanitySettings {
|
|
RootDirectory = rootDirectory.FullPath,
|
|
IsAppveyorBuild = AppVeyor.IsRunningOnAppVeyor
|
|
});
|
|
});
|
|
|
|
Task("Build")
|
|
.IsDependentOn("CodeFileSanity")
|
|
.IsDependentOn("InspectCode")
|
|
.IsDependentOn("Test");
|
|
|
|
RunTarget(target); |