Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit 0ac941c

Browse files
committed
Update to Bazel 0.18.0 & rules_sass 0.14.1
1 parent 5867cf7 commit 0ac941c

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.circleci/bazel.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ build --experimental_repository_cache=/home/circleci/bazel_repository_cache
2323

2424
# Workaround https://github.com/bazelbuild/bazel/issues/3645
2525
# 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
2828
# 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
3030

3131
# Use fixed chunk names for code-split bundles in CI
3232
# so that GitHub buildsize bot reports are accurate

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# We use a docker image as the basis for our build, so that all the toolchains we use
55
# are already installed and the build can start running right away. It also guarantees
66
# 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
88

99
# CircleCI lets us pick the key for storing one or more caches, to speed up subsequent builds.
1010
# 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
1313
# - the branch we are on, which really shouldn't be needed since the yarn lock file should be hermetic
1414
# - the docker image tag, working around an issue we saw where changing docker images causes permission
1515
# 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
1717

1818
# Each job will inherit these defaults
1919
anchor_1: &job_defaults

WORKSPACE

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ http_archive(
3939
# Rules for compiling sass
4040
http_archive(
4141
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",
4544
)
4645

4746
# This local_repository rule is needed to prevent `bazel build ...` from

0 commit comments

Comments
 (0)