This repository was archived by the owner on Apr 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ build --experimental_repository_cache=/home/circleci/bazel_repository_cache
23
23
24
24
# Workaround https://github.com/bazelbuild/bazel/issues/3645
25
25
# Bazel doesn't calculate the memory ceiling correctly when running under Docker.
26
- # Limit Bazel to consuming 2560K of RAM
27
- build --local_resources=2560 ,1.0,1.0
26
+ # Limit Bazel to consuming 2048K of RAM
27
+ build --local_resources=2048 ,1.0,1.0
28
28
# Also limit Bazel's own JVM heap to stay within our 4G container limit
29
- startup --host_jvm_args=-Xmx1g
29
+ startup --host_jvm_args=-Xmx1280m
30
30
31
31
# Use fixed chunk names for code-split bundles in CI
32
32
# so that GitHub buildsize bot reports are accurate
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.6 .0
7
+ var_1 : &docker_image angular/ngcontainer:0.7 .0
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.6.0
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.6 .0
16
+ var_2 : &cache_key angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.7 .0
17
17
18
18
# Each job will inherit these defaults
19
19
anchor_1 : &job_defaults
Original file line number Diff line number Diff line change @@ -39,9 +39,8 @@ http_archive(
39
39
# Rules for compiling sass
40
40
http_archive (
41
41
name = "io_bazel_rules_sass" ,
42
- sha256 = "dbe9fb97d5a7833b2a733eebc78c9c1e3880f676ac8af16e58ccf2139cbcad03" ,
43
- strip_prefix = "rules_sass-1.11.0" ,
44
- url = "https://github.com/bazelbuild/rules_sass/archive/1.11.0.zip" ,
42
+ url = "https://github.com/bazelbuild/rules_sass/archive/1.14.1.zip" ,
43
+ strip_prefix = "rules_sass-1.14.1" ,
45
44
)
46
45
47
46
# This local_repository rule is needed to prevent `bazel build ...` from
You can’t perform that action at this time.
0 commit comments