This repository was archived by the owner on Apr 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,5 @@ build --experimental_repository_cache=/home/circleci/bazel_repository_cache
25
25
# Bazel doesn't calculate the memory ceiling correctly when running under Docker.
26
26
# Limit Bazel to consuming 3072K of RAM
27
27
build --local_resources=3072,2.0,1.0
28
+ # Also limit Bazel's own JVM heap to stay within our 4G container limit
29
+ startup --host_jvm_args=-Xmx2G
Original file line number Diff line number Diff line change 4
4
# We use a docker image as the basis for our build, so that all the toolchains we use
5
5
# are already installed and the build can start running right away. It also guarantees
6
6
# the environment is portable and reproducible on your local machine.
7
- var_1 : &docker_image angular/ngcontainer:0.3.1
7
+ var_1 : &docker_image angular/ngcontainer:0.3.2
8
8
9
9
# CircleCI lets us pick the key for storing one or more caches, to speed up subsequent builds.
10
10
# We can use this to avoid re-fetching our dependencies from npm on every build.
@@ -13,7 +13,7 @@ var_1: &docker_image angular/ngcontainer:0.3.1
13
13
# - the branch we are on, which really shouldn't be needed since the yarn lock file should be hermetic
14
14
# - the docker image tag, working around an issue we saw where changing docker images causes permission
15
15
# errors when restoring the cache, like when the user we run as changes
16
- var_2 : &cache_key angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.3.1
16
+ var_2 : &cache_key angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.3.2
17
17
18
18
# Each job will inherit these defaults
19
19
anchor_1 : &job_defaults
You can’t perform that action at this time.
0 commit comments