| # Import shared settings first so we can override below |
| import %workspace%/common.bazelrc |
| |
| # Mock versioning command to test the --stamp behavior |
| build --workspace_status_command="echo BUILD_SCM_VERSION 1.2.3" |
| # ... but when releasing, use the real script instead |
| build:release --workspace_status_command=./scripts/current_version.sh |
| |
| # Avoid python 3 which requires explicit toolchain config |
| # This is needed only for the pkg_tar rule |
| build --host_force_python=PY2 |
| |
| # Opt-in to upcoming breaking changes |
| build --incompatible_disable_legacy_proto_provider |
| build --incompatible_use_python_toolchains |
| test --incompatible_windows_native_test_wrapper |
| common --incompatible_string_join_requires_strings |
| |
| # TODO(gregmagolan): remove the following flags once @io_bazel_rules_go is compatible with Bazel 0.27.0 |
| build --noincompatible_require_ctx_in_configure_features |
| build --noincompatible_no_support_tools_in_action_inputs |
| |
| # Define environment value used by some tests such as //internal/npm_install/test:bazel_bin_test |
| test --define=SOME_TEST_ENV=some_value |
| |
| ############################### |
| # Remote Build Execution support |
| # Turn on these settings with |
| # --config=remote |
| ############################### |
| |
| # Load default settings for Remote Build Execution. |
| import %workspace%/third_party/github.com/bazelbuild/bazel-toolchains/bazelrc/bazel-0.28.0.bazelrc |
| |
| # Remote instance, borrow the one used by Angular devs |
| build:remote --remote_instance_name=projects/internal-200822/instances/default_instance |
| build:remote --project_id=internal-200822 |
| |
| # To reproduce Windows issues where there is no runfiles symlink there |
| build:no-runfiles --noenable_runfiles |
| # workaround https://github.com/bazelbuild/bazel/issues/7994 |
| build:no-runfiles --spawn_strategy=standalone |
| # This config is probably only used while debugging |
| build:no-runfiles --define=VERBOSE_LOG=1 |
| |
| # Docker Sandbox Mode |
| # Useful for troubleshooting Remote Build Execution problems |
| # See https://docs.bazel.build/versions/master/remote-execution-sandbox.html#prerequisites |
| build:docker-sandbox --spawn_strategy=docker --strategy=Javac=docker --genrule_strategy=docker |
| build:docker-sandbox --define=EXECUTOR=remote |
| build:docker-sandbox --experimental_docker_verbose |
| build:docker-sandbox --experimental_enable_docker_sandbox |
| # This is the same image used on BazelCI rbe_ubuntu1604 job |
| build:docker-sandbox --experimental_docker_image=gcr.io/cloud-marketplace/google/rbe-ubuntu16-04 |