Skip to content

Commit

Permalink
Merge pull request docker#50 from crazy-max/disable-clipping
Browse files Browse the repository at this point in the history
Revert BuildKit step log limits tweak
  • Loading branch information
crazy-max committed Jan 5, 2021
2 parents 87e1457 + 8f7787f commit 154c24e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ import * as context from './context';
import * as mexec from './exec';
import * as stateHelper from './state-helper';

const buildkitStepLogMaxSize = 1024 * 8192;
const buildkitStepLogMaxSpeed = -1;

async function run(): Promise<void> {
try {
if (os.platform() !== 'linux') {
Expand Down Expand Up @@ -41,8 +38,6 @@ async function run(): Promise<void> {
await context.asyncForEach(inputs.driverOpts, async driverOpt => {
createArgs.push('--driver-opt', driverOpt);
});
createArgs.push('--driver-opt', 'env.BUILDKIT_STEP_LOG_MAX_SIZE=' + buildkitStepLogMaxSize);
createArgs.push('--driver-opt', 'env.BUILDKIT_STEP_LOG_MAX_SPEED=' + buildkitStepLogMaxSpeed);
if (inputs.buildkitdFlags) {
createArgs.push('--buildkitd-flags', inputs.buildkitdFlags);
}
Expand Down

0 comments on commit 154c24e

Please sign in to comment.