1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 06:52:55 +08:00

Build the projects before testing

This commit is contained in:
miterosan 2018-09-16 16:40:40 +02:00
parent 0491fd581a
commit ead2e38882

View File

@ -10,7 +10,6 @@ var target = Argument("target", "Build");
var framework = Argument("framework", "netcoreapp2.1");
var configuration = Argument("configuration", "Release");
var osuDesktop = new FilePath("./osu.Desktop/osu.Desktop.csproj");
var osuSolution = new FilePath("./osu.sln");
///////////////////////////////////////////////////////////////////////////////
@ -19,13 +18,14 @@ var osuSolution = new FilePath("./osu.sln");
Task("Compile")
.Does(() => {
DotNetCoreBuild(osuDesktop.FullPath, new DotNetCoreBuildSettings {
DotNetCoreBuild(osuSolution.FullPath, new DotNetCoreBuildSettings {
Framework = framework,
Configuration = configuration
});
});
Task("Test")
.IsDependentOn("Compile")
.Does(() => {
var testAssemblies = GetFiles("**/*.Tests/bin/**/*.Tests.dll");