Skip to content

Commit 97277bc

Browse files
alexeaglematsko
authored andcommitted
build: update to Bazel 0.15 (angular#24841)
PR Close angular#24841
1 parent 1821b75 commit 97277bc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
## IMPORTANT
1313
# If you change the `docker_image` version, also change the `cache_key` suffix and the version of
1414
# `com_github_bazelbuild_buildtools` in the `/WORKSPACE` file.
15-
var_1: &docker_image angular/ngcontainer:0.3.2
16-
var_2: &cache_key v2-angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.3.2
15+
var_1: &docker_image angular/ngcontainer:0.3.3
16+
var_2: &cache_key v2-angular-{{ .Branch }}-{{ checksum "yarn.lock" }}-0.3.3
1717

1818
# Define common ENV vars
1919
var_3: &define_env_vars

WORKSPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ http_archive(
7777

7878
load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories", "yarn_install")
7979

80-
check_bazel_version("0.14.0")
80+
check_bazel_version("0.15.0")
8181
node_repositories(package_json = ["//:package.json"])
8282

8383
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")

integration/bazel/WORKSPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ http_archive(
4444

4545
load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories")
4646

47-
check_bazel_version("0.14.0")
47+
check_bazel_version("0.15.0")
4848
node_repositories(package_json = ["//:package.json"])
4949

5050
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")

tools/ngcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN JAVA_DEBIAN_VERSION="8u131-b11-1~bpo8+1" \
1919
###
2020
# Bazel install
2121
# See https://bazel.build/versions/master/docs/install-ubuntu.html#using-bazel-custom-apt-repository-recommended
22-
RUN BAZEL_VERSION="0.14.1" \
22+
RUN BAZEL_VERSION="0.15.0" \
2323
&& wget -q -O - https://bazel.build/bazel-release.pub.gpg | apt-key add - \
2424
&& echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/bazel.list \
2525
&& apt-get update \

tools/ngcontainer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This docker container provides everything needed to build and test Angular appli
66
- npm 5.5.1
77
- yarn 1.3.2
88
- Java 8 (for Closure Compiler and Bazel)
9-
- Bazel build tool v0.14.1 - http://bazel.build
9+
- Bazel build tool v0.15.0 - http://bazel.build
1010
- Google Chrome 63.0.3239.84
1111
- Mozilla Firefox 47.0.1
1212
- xvfb (virtual framebuffer) for headless testing

0 commit comments

Comments
 (0)