mirror of
https://github.com/wassname/ray.git
synced 2026-07-16 11:21:10 +08:00
13 lines
560 B
Plaintext
13 lines
560 B
Plaintext
# build config
|
|
build --compilation_mode=opt
|
|
build --action_env=PATH
|
|
build --action_env=PYTHON_BIN_PATH
|
|
# Warnings should be errors
|
|
build --per_file_copt=-src/ray/thirdparty/hiredis/dict.c,-.*/arrow/util/logging.cc@-Werror
|
|
# Ignore warnings for protobuf generated files and external projects.
|
|
build --per_file_copt='\\.pb\\.cc$@-w'
|
|
build --per_file_copt='external*@-w'
|
|
# This workaround is needed due to https://github.com/bazelbuild/bazel/issues/4341
|
|
build --per_file_copt="external/com_github_grpc_grpc/.*@-DGRPC_BAZEL_BUILD"
|
|
build --http_timeout_scaling=5.0
|