ci: disable docker for ci
Some checks failed
Test if Server can be built / build-server (push) Failing after 30s
Some checks failed
Test if Server can be built / build-server (push) Failing after 30s
This commit is contained in:
parent
1de17ed73e
commit
1adcc5ea7c
1 changed files with 2 additions and 3 deletions
|
@ -47,12 +47,11 @@ sealed class Build : NukeBuild
|
|||
.DependsOn(Restore)
|
||||
.Executes(() =>
|
||||
{
|
||||
if (!SupportsDocker)
|
||||
if (SupportsDocker)
|
||||
{
|
||||
return;
|
||||
DockerTasks.DockerStackRm(settings => settings.SetStacks("continuity"));
|
||||
}
|
||||
|
||||
DockerTasks.DockerStackRm(settings => settings.SetStacks("continuity"));
|
||||
DotNetTasks.DotNetBuild(settings => settings.SetNoRestore(true));
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue