diff --git a/scripts/long-built/index.ts b/scripts/long-built/index.ts index cc7631ce..fc082c1f 100644 --- a/scripts/long-built/index.ts +++ b/scripts/long-built/index.ts @@ -82,7 +82,7 @@ const shell = async (commandLine: string, args?: Array, options?: ExecOp const mount = (directory: string): Array => ['--mount', `type=bind,source=${process.cwd()}/${directory},target=/mnt/${directory}`]; await core.group('Stage: Running docker container...', () => - shell('docker', ['run', '-e', 'TIMEOUT=330', '-e', `BUILD_ARCH=${input.arch}`, '--memory="5g"', '--memory-swap="3g"', ...mount('input'), ...mount('output'), ...mount('progress'), input.imageTag])); + shell('docker', ['run', '-e', 'TIMEOUT=330', '-e', `BUILD_ARCH=${input.arch}`, '--memory="5g"', ...mount('input'), ...mount('output'), ...mount('progress'), input.imageTag])); if (readdirSync('output').length !== 0) { console.log('Stage: Successfully built package');