fix: missing buildscript
Some checks failed
Test if Server can be built / build-server (push) Failing after 23s
Some checks failed
Test if Server can be built / build-server (push) Failing after 23s
This commit is contained in:
parent
b7a00c646c
commit
f4c8618c48
1 changed files with 2 additions and 2 deletions
|
@ -72,12 +72,12 @@ class Build : NukeBuild
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var sonarScannerSettings = new SonarScannerBeginSettings()
|
var sonarScannerSettings = new SonarScannerBeginSettings()
|
||||||
.SetLogin(SonarToken)
|
.SetLogin(SonarToken)
|
||||||
.SetProjectKey(SonarProjectKey)
|
.SetProjectKey(SonarProjectKey)
|
||||||
.SetProjectName("Continuity")
|
|
||||||
.SetProjectVersion(GitRepository.Branch)
|
|
||||||
.SetServer(SonarHostUrl);
|
.SetServer(SonarHostUrl);
|
||||||
|
SonarScannerTasks.SonarScannerBegin(sonarScannerSettings);
|
||||||
});
|
});
|
||||||
|
|
||||||
Target Deploy => _ => _.DependsOn(Pack).Executes(() =>
|
Target Deploy => _ => _.DependsOn(Pack).Executes(() =>
|
||||||
|
|
Loading…
Reference in a new issue