Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

buildkite: Shorten logs by pulling quietly #1415

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .buildkite/pipeline.public-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ steps:
plugins:
- docker-compose#${DOCKER_COMPOSE_PLUGIN_VERSION}:
run: app
tty: true
tty: true # nextest makes colored output if we use tty
env:
- BUILDKITE_PARALLEL_JOB
- SCCACHE_BUCKET=readysettech-build-sccache-us-east-2
Expand All @@ -110,6 +110,7 @@ steps:
- "${GIT_PUBLIC_ROOT}build/docker-compose.yml"
- "${GIT_PUBLIC_ROOT}build/docker-compose.ci-test.yml"
mount-buildkite-agent: true
quiet-pull: true # don't log all the image pulls
pull-retries: 3
- ecr#${ECR_PLUGIN_VERSION}:
login: true
Expand All @@ -133,6 +134,7 @@ steps:
plugins:
- docker-compose#${DOCKER_COMPOSE_PLUGIN_VERSION}:
run: app
tty: true # tests make colored output if we use tty
env:
- SCCACHE_BUCKET=readysettech-build-sccache-us-east-2
- SCCACHE_REGION=us-east-2
Expand All @@ -141,6 +143,7 @@ steps:
config:
- "${GIT_PUBLIC_ROOT}build/docker-compose.yml"
- "${GIT_PUBLIC_ROOT}build/docker-compose.ci-test.yml"
quiet-pull: true # don't log all the image pulls
pull-retries: 3
- ecr#${ECR_PLUGIN_VERSION}:
login: true
Expand Down Expand Up @@ -170,6 +173,7 @@ steps:
config:
- "${GIT_PUBLIC_ROOT}build/docker-compose.yml"
- "${GIT_PUBLIC_ROOT}build/docker-compose.ci-test.yml"
quiet-pull: true # don't log all the image pulls
pull-retries: 3
- ecr#${ECR_PLUGIN_VERSION}:
login: true
Expand Down