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

Disable kafka build by default #4638

Merged
merged 1 commit into from Jan 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .bazelrc
Expand Up @@ -24,3 +24,8 @@ build --define ssz=mainnet
build --incompatible_strict_action_env
test --incompatible_strict_action_env
run --incompatible_strict_action_env

# Disable kafka by default, it takes a long time to build...
build --define kafka_enabled=false
test --define kafka_enabled=false
run --define kafka_enabled=false
5 changes: 5 additions & 0 deletions .buildkite-bazelrc
Expand Up @@ -45,3 +45,8 @@ build --stamp
test --local_test_jobs=2
# Disabled race detection due to unstable test results under constrained environment build kite
# build --features=race

# Enable kafka for CI and docker images
build --define kafka_enabled=true
test --define kafka_enabled=true
run --define kafka_enabled=true