https://github.com/angular/angular
Raw File
Tip revision: 97110674f3b0291c94e8d1bc57665a779a258376 authored by Dylan Hunn on 29 June 2022, 18:19:59 UTC
release: cut the v14.1.0-next.3 release (#46622)
Tip revision: 9711067
bazel.linux.rc
# These options are enabled when running on CI
# We do this by copying this file to /etc/bazel.bazelrc at the start of the build.
# See documentation in /docs/BAZEL.md

# Import config items common to both Linux and Windows setups.
# https://docs.bazel.build/versions/master/guide.html#bazelrc-syntax-and-semantics
try-import %workspace%/.circleci/bazel.common.rc

# Save downloaded repositories in a location that can be cached by CircleCI. This helps us
# speeding up the analysis time significantly with Bazel managed node dependencies on the CI.
build --repository_cache=/home/circleci/bazel_repository_cache

# Workaround https://github.com/bazelbuild/bazel/issues/3645
# Bazel doesn't calculate the memory ceiling correctly when running under Docker.
# Limit Bazel to consuming resources that fit in CircleCI "xlarge" class
# https://circleci.com/docs/2.0/configuration-reference/#resource_class
build --local_cpu_resources=20
build --local_ram_resources=32768

# All build executed remotely should be done using our RBE configuration.
build:remote --google_default_credentials

build --config=remote
back to top