Package jetbrains.buildServer.serverSide
Interface BuildStartContextProcessor
-
- All Superinterfaces:
ServerExtension
,TeamCityExtension
- All Known Implementing Classes:
AgentlessBuildParametersProvider
,ApprovalBuildParametersProcessor
,ArtifactsStorageSettingsContextProcessor
,BuildVcsNumberCompatibilityExtension
,IdeaSettingsPreprocessor
,OutdatedAgentCompatibilityExtension
,PasswordsBuildStartContextProcessor
,RecentlyFailedTestsCalculator
,RemoteDebugBuildStartContextProcessor
,RemoteParametersContextProcessor
,SetStepNameContextProcessor
,SshKnownHostsParameterProcessor
@UserImplemented public interface BuildStartContextProcessor extends ServerExtension
Extension point to update parameters of a build before it is started on a build agent- Since:
- 6.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
updateParameters(BuildStartContext context)
This extension point is called before parameters are sent to a build agent.
-
-
-
Method Detail
-
updateParameters
void updateParameters(@NotNull BuildStartContext context)
This extension point is called before parameters are sent to a build agent. Build context can be used to alter parameters of a build before data is sent to a build agent- Parameters:
context
- context to update- Since:
- 6.0
-
-