2018-09-12 03:49:10 +08:00
|
|
|
#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"
|
2018-07-30 02:49:26 +08:00
|
|
|
|
2018-07-24 03:28:56 +08:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ARGUMENTS
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-07-26 09:40:28 +08:00
|
|
|
var target = Argument("target", "Build");
|
|
|
|
var configuration = Argument("configuration", "Release");
|
2018-07-24 03:28:56 +08:00
|
|
|
|
2018-07-30 08:12:39 +08:00
|
|
|
var osuSolution = new FilePath("./osu.sln");
|
2018-07-24 03:28:56 +08:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// TASKS
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-09-16 22:57:53 +08:00
|
|
|
Task("Restore")
|
2018-10-30 03:41:22 +08:00
|
|
|
.Does(() => {
|
|
|
|
DotNetCoreRestore(osuSolution.FullPath);
|
|
|
|
});
|
2018-09-16 22:57:53 +08:00
|
|
|
|
2018-07-24 03:28:56 +08:00
|
|
|
Task("Compile")
|
2018-10-30 03:41:22 +08:00
|
|
|
.IsDependentOn("Restore")
|
|
|
|
.Does(() => {
|
|
|
|
DotNetCoreBuild(osuSolution.FullPath, new DotNetCoreBuildSettings {
|
|
|
|
Configuration = configuration,
|
|
|
|
NoRestore = true,
|
|
|
|
});
|
2018-07-24 03:28:56 +08:00
|
|
|
});
|
|
|
|
|
2018-07-26 09:40:28 +08:00
|
|
|
Task("Test")
|
2018-10-30 03:41:22 +08:00
|
|
|
.IsDependentOn("Compile")
|
|
|
|
.Does(() => {
|
|
|
|
var testAssemblies = GetFiles("**/*.Tests/bin/**/*.Tests.dll");
|
2018-09-16 22:25:19 +08:00
|
|
|
|
2018-10-30 03:41:22 +08:00
|
|
|
DotNetCoreVSTest(testAssemblies, new DotNetCoreVSTestSettings {
|
|
|
|
Logger = AppVeyor.IsRunningOnAppVeyor ? "Appveyor" : $"trx",
|
|
|
|
Parallel = true,
|
|
|
|
ToolTimeout = TimeSpan.FromMinutes(10),
|
|
|
|
});
|
2018-07-24 03:28:56 +08:00
|
|
|
});
|
|
|
|
|
2018-08-08 04:36:52 +08:00
|
|
|
// windows only because both inspectcore and nvika depend on net45
|
2018-07-30 02:49:26 +08:00
|
|
|
Task("InspectCode")
|
2018-10-30 03:41:22 +08:00
|
|
|
.WithCriteria(IsRunningOnWindows())
|
|
|
|
.IsDependentOn("Compile")
|
|
|
|
.Does(() => {
|
|
|
|
var nVikaToolPath = GetFiles("./tools/NVika.MSBuild.*/tools/NVika.exe").First();
|
2018-08-06 04:24:52 +08:00
|
|
|
|
2018-10-30 03:41:22 +08:00
|
|
|
InspectCode(osuSolution, new InspectCodeSettings {
|
|
|
|
CachesHome = "inspectcode",
|
|
|
|
OutputFile = "inspectcodereport.xml",
|
|
|
|
});
|
2018-07-30 08:12:39 +08:00
|
|
|
|
2018-10-30 03:41:22 +08:00
|
|
|
StartProcess(nVikaToolPath, @"parsereport ""inspectcodereport.xml"" --treatwarningsaserrors");
|
|
|
|
});
|
2018-07-30 08:12:39 +08:00
|
|
|
|
|
|
|
Task("CodeFileSanity")
|
2018-10-30 03:41:22 +08:00
|
|
|
.Does(() => {
|
|
|
|
ValidateCodeSanity(new ValidateCodeSanitySettings {
|
|
|
|
RootDirectory = ".",
|
|
|
|
IsAppveyorBuild = AppVeyor.IsRunningOnAppVeyor
|
|
|
|
});
|
2018-08-04 06:01:17 +08:00
|
|
|
});
|
2018-07-30 02:49:26 +08:00
|
|
|
|
2018-07-26 09:40:28 +08:00
|
|
|
Task("Build")
|
2018-10-30 03:41:22 +08:00
|
|
|
.IsDependentOn("CodeFileSanity")
|
|
|
|
.IsDependentOn("InspectCode")
|
|
|
|
.IsDependentOn("Test");
|
2018-07-24 03:28:56 +08:00
|
|
|
|
|
|
|
RunTarget(target);
|