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

Commit

Permalink
Bumping Bazel to 3.7.2 (#3654)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknezis authored Dec 31, 2020
1 parent 01abf01 commit 0025251
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.0
3.7.2
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ addons:
- libgoogle-perftools-dev

env:
- BAZEL_VERSION=3.7.0 ENABLE_HEAPCHECK=1
- BAZEL_VERSION=3.7.2 ENABLE_HEAPCHECK=1

before_install:
# download and install bazel
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Confluence: https://cwiki.apache.org/confluence/display/HERON
#### Heron Requirements:
* Java 11
* Python 3.6
* Bazel 3.7.0
* Bazel 3.7.2

## Contact

Expand Down
2 changes: 1 addition & 1 deletion docker/compile/Dockerfile.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN yum -y install \

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

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion docker/compile/Dockerfile.debian10
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN apt-get update && apt-get -y install \
wget \
zip

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion docker/compile/Dockerfile.debian9
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN apt-get update && apt-get -y install \
wget \
zip

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion docker/compile/Dockerfile.ubuntu18.04
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10

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

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion docker/compile/Dockerfile.ubuntu20.04
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN apt-get update && apt-get -y install \

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

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion docker/test/Dockerfile.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN yum -y install \

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

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion docker/test/Dockerfile.ubuntu18.04
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10

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

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2

RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/setup_bazel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if [ "$#" -ne 1 ]; then
exit 1
fi
BAZEL_OS=$1
BAZEL_VERSION=3.7.0
BAZEL_VERSION=3.7.2

# Install Bazel
BAZEL_INSTALLER=bazel-$BAZEL_VERSION-installer-$BAZEL_OS-x86_64.sh
Expand Down
2 changes: 1 addition & 1 deletion vagrant/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ install_marathon() {
service marathon start
}

bazelVersion=3.7.0
bazelVersion=3.7.2
bazel_install() {
apt-get install -y automake cmake gcc g++ zlib1g-dev zip pkg-config wget libssl-dev libunwind-dev
mkdir -p /opt/bazel
Expand Down
2 changes: 1 addition & 1 deletion website2/docs/compiling-osx.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst

### Step 2 -- Install Bazel
```bash
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.7.0/bazel-3.7.0-installer-darwin-x86_64.sh
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.7.2/bazel-3.7.2-installer-darwin-x86_64.sh
chmod +x /tmp/bazel.sh
/tmp/bazel.sh --user
```
Expand Down
2 changes: 1 addition & 1 deletion website2/website/scripts/Dockerfile.ubuntu18.04
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN apt-get update && apt-get install -y nodejs

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

ENV bazelVersion 3.7.0
ENV bazelVersion 3.7.2
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
&& chmod +x /tmp/bazel.sh \
&& /tmp/bazel.sh --user
Expand Down
2 changes: 1 addition & 1 deletion website2/website/scripts/replace.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const bazelVersions = {
'0.20.0-incubating': '0.14.1',
'0.20.1-incubating': '0.26.0',
'0.20.2-incubating': '0.26.0',
'latest': '3.7.0',
'latest': '3.7.2',
}

function replaceBazel(version) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst

### Step 2 -- Install Bazel
```bash
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.7.0/bazel-3.7.0-installer-darwin-x86_64.sh
wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.7.2/bazel-3.7.2-installer-darwin-x86_64.sh
chmod +x /tmp/bazel.sh
/tmp/bazel.sh --user
```
Expand Down

0 comments on commit 0025251

Please sign in to comment.