This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch nicknezis/bazel-3.5
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git

commit f0434e046a1f684368d7588bfd9e21f916525ad9
Author: Nicholas Nezis <[email protected]>
AuthorDate: Mon Nov 2 22:51:15 2020 +0000

    Updating to Bazel 3.5.0
---
 .bazelversion                                                          | 2 +-
 .travis.yml                                                            | 2 +-
 README.md                                                              | 2 +-
 docker/compile/Dockerfile.centos7                                      | 2 +-
 docker/compile/Dockerfile.debian10                                     | 2 +-
 docker/compile/Dockerfile.debian9                                      | 2 +-
 docker/compile/Dockerfile.ubuntu18.04                                  | 2 +-
 docker/compile/Dockerfile.ubuntu20.04                                  | 2 +-
 docker/test/Dockerfile.centos7                                         | 2 +-
 docker/test/Dockerfile.ubuntu18.04                                     | 2 +-
 scripts/ci/setup_bazel.sh                                              | 2 +-
 vagrant/init.sh                                                        | 2 +-
 website2/docs/compiling-osx.md                                         | 2 +-
 website2/website/scripts/Dockerfile.ubuntu18.04                        | 3 +--
 website2/website/scripts/replace.js                                    | 2 +-
 .../website/versioned_docs/version-0.20.2-incubating/compiling-osx.md  | 2 +-
 16 files changed, 16 insertions(+), 17 deletions(-)

diff --git a/.bazelversion b/.bazelversion
index 47b322c..1545d96 100644
--- a/.bazelversion
+++ b/.bazelversion
@@ -1 +1 @@
-3.4.1
+3.5.0
diff --git a/.travis.yml b/.travis.yml
index f8e873f..37f42f6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,7 +26,7 @@ addons:
       - libgoogle-perftools-dev
 
 env:
-  - BAZEL_VERSION=3.4.1 ENABLE_HEAPCHECK=1
+  - BAZEL_VERSION=3.5.0 ENABLE_HEAPCHECK=1
 
 before_install:
   # download and install bazel
diff --git a/README.md b/README.md
index 0df4031..a7241ae 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ Confluence: https://cwiki.apache.org/confluence/display/HERON
 #### Heron Requirements:
  * Java 11
  * Python 3.6
- * Bazel 3.4.1
+ * Bazel 3.5.0
 
 ## Contact
 
diff --git a/docker/compile/Dockerfile.centos7 
b/docker/compile/Dockerfile.centos7
index f77b6f0..5cc3cac 100644
--- a/docker/compile/Dockerfile.centos7
+++ b/docker/compile/Dockerfile.centos7
@@ -47,7 +47,7 @@ RUN yum -y install \
 
 ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk
 
-ENV bazelVersion 3.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/docker/compile/Dockerfile.debian10 
b/docker/compile/Dockerfile.debian10
index 0188ec6..a9a6a57 100644
--- a/docker/compile/Dockerfile.debian10
+++ b/docker/compile/Dockerfile.debian10
@@ -43,7 +43,7 @@ RUN apt-get update && apt-get -y install \
       wget \
       zip
 
-ENV bazelVersion 3.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/docker/compile/Dockerfile.debian9 
b/docker/compile/Dockerfile.debian9
index 7c64975..599155c 100644
--- a/docker/compile/Dockerfile.debian9
+++ b/docker/compile/Dockerfile.debian9
@@ -41,7 +41,7 @@ RUN apt-get update && apt-get -y install \
       wget \
       zip
 
-ENV bazelVersion 3.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/docker/compile/Dockerfile.ubuntu18.04 
b/docker/compile/Dockerfile.ubuntu18.04
index c13995b..10047a0 100644
--- a/docker/compile/Dockerfile.ubuntu18.04
+++ b/docker/compile/Dockerfile.ubuntu18.04
@@ -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.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/docker/compile/Dockerfile.ubuntu20.04 
b/docker/compile/Dockerfile.ubuntu20.04
index 8a8b28c..e53be68 100644
--- a/docker/compile/Dockerfile.ubuntu20.04
+++ b/docker/compile/Dockerfile.ubuntu20.04
@@ -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.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/docker/test/Dockerfile.centos7 b/docker/test/Dockerfile.centos7
index 376f591..f3f498a 100644
--- a/docker/test/Dockerfile.centos7
+++ b/docker/test/Dockerfile.centos7
@@ -47,7 +47,7 @@ RUN yum -y install \
 
 ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk
 
-ENV bazelVersion 3.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/docker/test/Dockerfile.ubuntu18.04 
b/docker/test/Dockerfile.ubuntu18.04
index 924b7a5..12db5a4 100644
--- a/docker/test/Dockerfile.ubuntu18.04
+++ b/docker/test/Dockerfile.ubuntu18.04
@@ -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.4.1
+ENV bazelVersion 3.5.0
 
 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 \
diff --git a/scripts/ci/setup_bazel.sh b/scripts/ci/setup_bazel.sh
index 2b41426..ae71d56 100644
--- a/scripts/ci/setup_bazel.sh
+++ b/scripts/ci/setup_bazel.sh
@@ -29,7 +29,7 @@ if [ "$#" -ne 1 ]; then
     exit 1
 fi
 BAZEL_OS=$1
-BAZEL_VERSION=3.4.1
+BAZEL_VERSION=3.5.0
 
 # Install Bazel
 BAZEL_INSTALLER=bazel-$BAZEL_VERSION-installer-$BAZEL_OS-x86_64.sh
diff --git a/vagrant/init.sh b/vagrant/init.sh
index 5b793bb..0541c9a 100644
--- a/vagrant/init.sh
+++ b/vagrant/init.sh
@@ -43,7 +43,7 @@ install_marathon() {
     service marathon start
 }
 
-bazelVersion=3.4.1
+bazelVersion=3.5.0
 bazel_install() {
     apt-get install -y automake cmake gcc g++ zlib1g-dev zip pkg-config wget 
libssl-dev libunwind-dev
     mkdir -p /opt/bazel
diff --git a/website2/docs/compiling-osx.md b/website2/docs/compiling-osx.md
index 24bb9c2..21ab1d2 100644
--- a/website2/docs/compiling-osx.md
+++ b/website2/docs/compiling-osx.md
@@ -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.4.1/bazel-3.4.1-installer-darwin-x86_64.sh
+wget -O /tmp/bazel.sh 
https://github.com/bazelbuild/bazel/releases/download/3.5.0/bazel-3.5.0-installer-darwin-x86_64.sh
 chmod +x /tmp/bazel.sh
 /tmp/bazel.sh --user
 ```
diff --git a/website2/website/scripts/Dockerfile.ubuntu18.04 
b/website2/website/scripts/Dockerfile.ubuntu18.04
index 8d02c38..43fe93a 100644
--- a/website2/website/scripts/Dockerfile.ubuntu18.04
+++ b/website2/website/scripts/Dockerfile.ubuntu18.04
@@ -19,8 +19,6 @@ FROM ubuntu:18.04
 
 # This is passed to the heron build command via the --config flag
 ENV TARGET_PLATFORM ubuntu
-ENV bazelVersion 3.4.1
-
 
 RUN apt-get update && apt-get -y install \
       ant \
@@ -54,6 +52,7 @@ RUN apt-get update && apt-get install -y nodejs
 
 ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
 
+ENV bazelVersion 3.5.0
 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
diff --git a/website2/website/scripts/replace.js 
b/website2/website/scripts/replace.js
index b193329..8df9c76 100755
--- a/website2/website/scripts/replace.js
+++ b/website2/website/scripts/replace.js
@@ -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.4.1',
+    'latest': '3.5.0',
 }
 
 function replaceBazel(version) {
diff --git 
a/website2/website/versioned_docs/version-0.20.2-incubating/compiling-osx.md 
b/website2/website/versioned_docs/version-0.20.2-incubating/compiling-osx.md
index f955268..970d697 100644
--- a/website2/website/versioned_docs/version-0.20.2-incubating/compiling-osx.md
+++ b/website2/website/versioned_docs/version-0.20.2-incubating/compiling-osx.md
@@ -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.4.1/bazel-3.4.1-installer-darwin-x86_64.sh
+wget -O /tmp/bazel.sh 
https://github.com/bazelbuild/bazel/releases/download/3.5.0/bazel-3.5.0-installer-darwin-x86_64.sh
 chmod +x /tmp/bazel.sh
 /tmp/bazel.sh --user
 ```

Reply via email to