Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit cadf985

Browse files
authored
Updating to Bazel 3.5.0 (#3627)
1 parent ec2cff2 commit cadf985

16 files changed

+16
-17
lines changed

.bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.1
1+
3.5.0

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ addons:
2626
- libgoogle-perftools-dev
2727

2828
env:
29-
- BAZEL_VERSION=3.4.1 ENABLE_HEAPCHECK=1
29+
- BAZEL_VERSION=3.5.0 ENABLE_HEAPCHECK=1
3030

3131
before_install:
3232
# download and install bazel

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Confluence: https://cwiki.apache.org/confluence/display/HERON
3232
#### Heron Requirements:
3333
* Java 11
3434
* Python 3.6
35-
* Bazel 3.4.1
35+
* Bazel 3.5.0
3636

3737
## Contact
3838

docker/compile/Dockerfile.centos7

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN yum -y install \
4747

4848
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk
4949

50-
ENV bazelVersion 3.4.1
50+
ENV bazelVersion 3.5.0
5151

5252
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
5353
&& chmod +x /tmp/bazel.sh \

docker/compile/Dockerfile.debian10

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ RUN apt-get update && apt-get -y install \
4343
wget \
4444
zip
4545

46-
ENV bazelVersion 3.4.1
46+
ENV bazelVersion 3.5.0
4747

4848
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
4949
&& chmod +x /tmp/bazel.sh \

docker/compile/Dockerfile.debian9

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN apt-get update && apt-get -y install \
4141
wget \
4242
zip
4343

44-
ENV bazelVersion 3.4.1
44+
ENV bazelVersion 3.5.0
4545

4646
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
4747
&& chmod +x /tmp/bazel.sh \

docker/compile/Dockerfile.ubuntu18.04

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
4444

4545
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
4646

47-
ENV bazelVersion 3.4.1
47+
ENV bazelVersion 3.5.0
4848

4949
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
5050
&& chmod +x /tmp/bazel.sh \

docker/compile/Dockerfile.ubuntu20.04

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ RUN apt-get update && apt-get -y install \
4545

4646
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
4747

48-
ENV bazelVersion 3.4.1
48+
ENV bazelVersion 3.5.0
4949

5050
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
5151
&& chmod +x /tmp/bazel.sh \

docker/test/Dockerfile.centos7

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN yum -y install \
4747

4848
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk
4949

50-
ENV bazelVersion 3.4.1
50+
ENV bazelVersion 3.5.0
5151

5252
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
5353
&& chmod +x /tmp/bazel.sh \

docker/test/Dockerfile.ubuntu18.04

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
4242

4343
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
4444

45-
ENV bazelVersion 3.4.1
45+
ENV bazelVersion 3.5.0
4646

4747
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
4848
&& chmod +x /tmp/bazel.sh \

scripts/ci/setup_bazel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if [ "$#" -ne 1 ]; then
2929
exit 1
3030
fi
3131
BAZEL_OS=$1
32-
BAZEL_VERSION=3.4.1
32+
BAZEL_VERSION=3.5.0
3333

3434
# Install Bazel
3535
BAZEL_INSTALLER=bazel-$BAZEL_VERSION-installer-$BAZEL_OS-x86_64.sh

vagrant/init.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ install_marathon() {
4343
service marathon start
4444
}
4545

46-
bazelVersion=3.4.1
46+
bazelVersion=3.5.0
4747
bazel_install() {
4848
apt-get install -y automake cmake gcc g++ zlib1g-dev zip pkg-config wget libssl-dev libunwind-dev
4949
mkdir -p /opt/bazel

website2/docs/compiling-osx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst
3434

3535
### Step 2 -- Install Bazel
3636
```bash
37-
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.4.1/bazel-3.4.1-installer-darwin-x86_64.sh
37+
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.5.0/bazel-3.5.0-installer-darwin-x86_64.sh
3838
chmod +x /tmp/bazel.sh
3939
/tmp/bazel.sh --user
4040
```

website2/website/scripts/Dockerfile.ubuntu18.04

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ FROM ubuntu:18.04
1919

2020
# This is passed to the heron build command via the --config flag
2121
ENV TARGET_PLATFORM ubuntu
22-
ENV bazelVersion 3.4.1
23-
2422

2523
RUN apt-get update && apt-get -y install \
2624
ant \
@@ -54,6 +52,7 @@ RUN apt-get update && apt-get install -y nodejs
5452

5553
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
5654

55+
ENV bazelVersion 3.5.0
5756
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
5857
&& chmod +x /tmp/bazel.sh \
5958
&& /tmp/bazel.sh --user

website2/website/scripts/replace.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const bazelVersions = {
3838
'0.20.0-incubating': '0.14.1',
3939
'0.20.1-incubating': '0.26.0',
4040
'0.20.2-incubating': '0.26.0',
41-
'latest': '3.4.1',
41+
'latest': '3.5.0',
4242
}
4343

4444
function replaceBazel(version) {

website2/website/versioned_docs/version-0.20.2-incubating/compiling-osx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst
3535

3636
### Step 2 -- Install Bazel
3737
```bash
38-
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.4.1/bazel-3.4.1-installer-darwin-x86_64.sh
38+
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.5.0/bazel-3.5.0-installer-darwin-x86_64.sh
3939
chmod +x /tmp/bazel.sh
4040
/tmp/bazel.sh --user
4141
```

0 commit comments

Comments
 (0)