public interface AgentBuildParameters
Modifier and Type | Method and Description |
---|---|
void |
addBuildEnvironmnentVariable(java.lang.String name,
java.lang.String value)
Adds environment variable to the build process
Creates build parameters with
Constants.ENV_PREFIX
prefix
Note, on Windows machines environment size is limited. |
void |
addBuildSystemProperty(BuildParameterPolicy policy,
java.lang.String name,
java.lang.String value)
Adds build system property to the build process
Creates build parameters with
Constants.SYSTEM_PREFIX
prefix |
void addBuildEnvironmnentVariable(@NotNull java.lang.String name, @NotNull java.lang.String value)
Constants.ENV_PREFIX
prefix
Note, on Windows machines environment size is limited.name
- name, may be case sensitive or not depending on OSvalue
- valuevoid addBuildSystemProperty(@NotNull BuildParameterPolicy policy, @NotNull java.lang.String name, @NotNull java.lang.String value)
Constants.SYSTEM_PREFIX
prefixname
- name, may be case sensitive or not depending on runnervalue
- valuepolicy
- defines weather build parameter is mandatory or not