mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 04:43:22 +08:00
Build the projects before testing
This commit is contained in:
parent
0491fd581a
commit
ead2e38882
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user