2023-02-01 21:37:16 +00:00
|
|
|
# Java
|
|
|
|
test --test_env='LC_ALL=en_US.UTF-8'
|
|
|
|
test --test_env='LANG=en_US.UTF-8'
|
|
|
|
test --jvmopt='-Dsun.jnu.encoding=UTF-8'
|
|
|
|
test --jvmopt='-Dfile.encoding=UTF-8'
|
|
|
|
build --test_env='LC_ALL=en_US.UTF-8'
|
|
|
|
build --jvmopt='-Dsun.jnu.encoding=UTF-8'
|
|
|
|
build --jvmopt='-Dfile.encoding=UTF-8'
|
|
|
|
build --test_env='LANG=en_US.UTF-8'
|
|
|
|
test --test_env=PATH
|
|
|
|
|
|
|
|
build --java_language_version=11
|
|
|
|
test --java_language_version=11
|
|
|
|
|
|
|
|
# C++
|
|
|
|
build --client_env=CC=clang
|
|
|
|
build --copt=-DGRPC_BAZEL_BUILD
|
|
|
|
build --cxxopt='-std=c++14'
|
|
|
|
build --action_env=GRPC_BAZEL_RUNTIME=1
|
|
|
|
build --define=use_fast_cpp_protos=true
|
|
|
|
|
|
|
|
# Just build tests when testing
|
|
|
|
test --build_tests_only
|
|
|
|
|
|
|
|
build --incompatible_strict_action_env=true
|
|
|
|
|
|
|
|
# Minimize what is downloaded
|
|
|
|
build:inmemory --experimental_inmemory_jdeps_files
|
|
|
|
build:inmemory --experimental_inmemory_dotd_files
|
|
|
|
|
|
|
|
# Minimize what is downloaded
|
|
|
|
build:toplevel --config=inmemory
|
|
|
|
build:toplevel --experimental_remote_download_outputs=toplevel
|
|
|
|
|
2023-02-01 22:36:56 +00:00
|
|
|
build --stamp=true
|
|
|
|
build --workspace_status_command=build/stamp.sh
|
|
|
|
run --workspace_status_command=build/stamp.sh
|