quiet zipping
parent
ff51a4a617
commit
89a630d302
|
|
@ -3206,7 +3206,7 @@ class BuildAutomationWorkflow {
|
||||||
static get FullWorkflow() {
|
static get FullWorkflow() {
|
||||||
const setupHooks = cloud_runner_build_command_process_1.CloudRunnerBuildCommandProcessor.getHooks(cloud_runner_1.default.buildParameters.customJobHooks).filter((x) => x.step.includes(`setup`));
|
const setupHooks = cloud_runner_build_command_process_1.CloudRunnerBuildCommandProcessor.getHooks(cloud_runner_1.default.buildParameters.customJobHooks).filter((x) => x.step.includes(`setup`));
|
||||||
const buildHooks = cloud_runner_build_command_process_1.CloudRunnerBuildCommandProcessor.getHooks(cloud_runner_1.default.buildParameters.customJobHooks).filter((x) => x.step.includes(`build`));
|
const buildHooks = cloud_runner_build_command_process_1.CloudRunnerBuildCommandProcessor.getHooks(cloud_runner_1.default.buildParameters.customJobHooks).filter((x) => x.step.includes(`build`));
|
||||||
return `apt-get update
|
return `apt-get update -q
|
||||||
apt-get install -y -q zip tree npm git-lfs jq unzip git
|
apt-get install -y -q zip tree npm git-lfs jq unzip git
|
||||||
npm install -g n
|
npm install -g n
|
||||||
n stable
|
n stable
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -80,7 +80,7 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
|
||||||
const buildHooks = CloudRunnerBuildCommandProcessor.getHooks(CloudRunner.buildParameters.customJobHooks).filter(
|
const buildHooks = CloudRunnerBuildCommandProcessor.getHooks(CloudRunner.buildParameters.customJobHooks).filter(
|
||||||
(x) => x.step.includes(`build`),
|
(x) => x.step.includes(`build`),
|
||||||
);
|
);
|
||||||
return `apt-get update
|
return `apt-get update -q
|
||||||
apt-get install -y -q zip tree npm git-lfs jq unzip git
|
apt-get install -y -q zip tree npm git-lfs jq unzip git
|
||||||
npm install -g n
|
npm install -g n
|
||||||
n stable
|
n stable
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue