|
driver-opts: | |
|
image=${{ env.BUILDKIT_IMAGE }} |
|
env.ACTIONS_ID_TOKEN_REQUEST_TOKEN=${{ env.ACTIONS_ID_TOKEN_REQUEST_TOKEN }} |
|
env.ACTIONS_ID_TOKEN_REQUEST_URL=${{ env.ACTIONS_ID_TOKEN_REQUEST_URL }} |
It would be great to be able to specify the log size and rate limits.
env.BUILDKIT_STEP_LOG_MAX_SIZE
env.BUILDKIT_STEP_LOG_MAX_SPEED
About the worst thing you can do when a build is taking longer than expected is to drop the logs that would tell me why. The longer it takes and the more logs, the greater the lost time trying to repeat it to identify the problem.
As it stands, I need a separate job to adjust these unless I am missing something.
github-builder/.github/workflows/build.yml
Lines 529 to 532 in c26077c
It would be great to be able to specify the log size and rate limits.
env.BUILDKIT_STEP_LOG_MAX_SIZEenv.BUILDKIT_STEP_LOG_MAX_SPEEDAbout the worst thing you can do when a build is taking longer than expected is to drop the logs that would tell me why. The longer it takes and the more logs, the greater the lost time trying to repeat it to identify the problem.
As it stands, I need a separate job to adjust these unless I am missing something.