Cleanup unused params
parent
cbde7b54ac
commit
fd7339f49e
|
|
@ -280,8 +280,6 @@ class BuildParameters {
|
||||||
kubeVolume: cloud_runner_options_1.default.kubeVolume,
|
kubeVolume: cloud_runner_options_1.default.kubeVolume,
|
||||||
postBuildSteps: cloud_runner_options_1.default.postBuildSteps,
|
postBuildSteps: cloud_runner_options_1.default.postBuildSteps,
|
||||||
preBuildSteps: cloud_runner_options_1.default.preBuildSteps,
|
preBuildSteps: cloud_runner_options_1.default.preBuildSteps,
|
||||||
customStepFiles: cloud_runner_options_1.default.customStepFiles,
|
|
||||||
customHookFiles: cloud_runner_options_1.default.customHookFiles,
|
|
||||||
customJob: cloud_runner_options_1.default.customJob,
|
customJob: cloud_runner_options_1.default.customJob,
|
||||||
runNumber: input_1.default.runNumber,
|
runNumber: input_1.default.runNumber,
|
||||||
branch: input_1.default.branch.replace('/head', '') || (yield git_repo_1.GitRepoReader.GetBranch()),
|
branch: input_1.default.branch.replace('/head', '') || (yield git_repo_1.GitRepoReader.GetBranch()),
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -52,8 +52,6 @@ class BuildParameters {
|
||||||
|
|
||||||
public postBuildSteps!: string;
|
public postBuildSteps!: string;
|
||||||
public preBuildSteps!: string;
|
public preBuildSteps!: string;
|
||||||
public customStepFiles!: string;
|
|
||||||
public customHookFiles!: string;
|
|
||||||
public customJob!: string;
|
public customJob!: string;
|
||||||
public runNumber!: string;
|
public runNumber!: string;
|
||||||
public branch!: string;
|
public branch!: string;
|
||||||
|
|
@ -123,8 +121,6 @@ class BuildParameters {
|
||||||
kubeVolume: CloudRunnerOptions.kubeVolume,
|
kubeVolume: CloudRunnerOptions.kubeVolume,
|
||||||
postBuildSteps: CloudRunnerOptions.postBuildSteps,
|
postBuildSteps: CloudRunnerOptions.postBuildSteps,
|
||||||
preBuildSteps: CloudRunnerOptions.preBuildSteps,
|
preBuildSteps: CloudRunnerOptions.preBuildSteps,
|
||||||
customStepFiles: CloudRunnerOptions.customStepFiles,
|
|
||||||
customHookFiles: CloudRunnerOptions.customHookFiles,
|
|
||||||
customJob: CloudRunnerOptions.customJob,
|
customJob: CloudRunnerOptions.customJob,
|
||||||
runNumber: Input.runNumber,
|
runNumber: Input.runNumber,
|
||||||
branch: Input.branch.replace('/head', '') || (await GitRepoReader.GetBranch()),
|
branch: Input.branch.replace('/head', '') || (await GitRepoReader.GetBranch()),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue