1

Windows 2012 R2 に Jenkins Server をセットアップしました。これらは私のビルド設定です:

ここに画像の説明を入力

その下にエラーが表示されます。ビルド前のステップが正常に実行されたと言う必要があります。

[Test CSharp Build Job] $ ...\Jenkins\.jenkins\tools\hudson.plugins.sonar.MsBuildSQRunnerInstallation\MSBuild_2.0\MSBuild.SonarQube.Runner.exe end
SonarQube Scanner for MSBuild 2.0
Default properties file was found at ...\Documents\Jenkins\.jenkins\tools\hudson.plugins.sonar.MsBuildSQRunnerInstallation\MSBuild_2.0\SonarQube.Analysis.xml
Loading analysis properties from ...\Documents\Jenkins\.jenkins\tools\hudson.plugins.sonar.MsBuildSQRunnerInstallation\MSBuild_2.0\SonarQube.Analysis.xml
Post-processing started.
SonarQube Scanner for MSBuild End Step 1.1
No ProjectInfo.xml files were found. Possible causes: 
1. The project has not been built - the end step was called right after the begin step, without a build step in between 
2. An unsupported version of MSBuild has been used to build the project. Currently MSBuild 12.0 upwards are supported
3. The build step has been launched from a different working folder
Generation of the sonar-properties file failed. Unable to complete SonarQube analysis.
11:18:18.015  Creating a summary markdown file...
Post-processing failed. Exit code: 1
ERROR: Execution of SonarQube Scanner for MSBuild failed (exit code 1)

したがって、私のJenkins構成には次のものがあります。

ここに画像の説明を入力

これを機能させるために何か不足していますか?

4

1 に答える 1

3

わかりました

/t:rebuildMSBuild でのビルドと End Analysis コマンドの実行の間に を追加するのを忘れていました。

于 2016-04-21T11:04:18.207 に答える