d845352863
As for now, JJB lacks the ability to control the `Enable enhanced logging` option of Parametrized Remote Trigger plugin. This option allows the console log of the remote job to be printed in the console log of the calling job. This patch adds the option `enhanced-logging` to the `trigger-remote` builder to control this checkbox. The default value is set to `False` to keep the current behaviour for those who do not need the logs. Change-Id: I3d109603b4eb9ce247e5e6c4588053e1c61ba6ce
19 lines
781 B
XML
19 lines
781 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<builders>
|
|
<org.jenkinsci.plugins.ParameterizedRemoteTrigger.RemoteBuildConfiguration>
|
|
<remoteJenkinsName>http://example.jenkinsmaster.lan</remoteJenkinsName>
|
|
<token/>
|
|
<job>build-things</job>
|
|
<shouldNotFailBuild>false</shouldNotFailBuild>
|
|
<pollInterval>10</pollInterval>
|
|
<connectionRetryLimit>5</connectionRetryLimit>
|
|
<enhancedLogging>false</enhancedLogging>
|
|
<preventRemoteBuildQueue>false</preventRemoteBuildQueue>
|
|
<blockBuildUntilComplete>true</blockBuildUntilComplete>
|
|
<loadParamsFromFile>false</loadParamsFromFile>
|
|
<overrideAuth>false</overrideAuth>
|
|
</org.jenkinsci.plugins.ParameterizedRemoteTrigger.RemoteBuildConfiguration>
|
|
</builders>
|
|
</project>
|