This repository was archived by the owner on Mar 3, 2023. It is now read-only.
File tree 16 files changed +16
-16
lines changed
versioned_docs/version-0.20.2-incubating
16 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
- 3.5 .0
1
+ 3.7 .0
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ addons:
26
26
- libgoogle-perftools-dev
27
27
28
28
env :
29
- - BAZEL_VERSION=3.5 .0 ENABLE_HEAPCHECK=1
29
+ - BAZEL_VERSION=3.7 .0 ENABLE_HEAPCHECK=1
30
30
31
31
before_install :
32
32
# download and install bazel
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Confluence: https://cwiki.apache.org/confluence/display/HERON
32
32
#### Heron Requirements:
33
33
* Java 11
34
34
* Python 3.6
35
- * Bazel 3.5 .0
35
+ * Bazel 3.7 .0
36
36
37
37
## Contact
38
38
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ RUN yum -y install \
47
47
48
48
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk
49
49
50
- ENV bazelVersion 3.5 .0
50
+ ENV bazelVersion 3.7 .0
51
51
52
52
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
53
53
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ RUN apt-get update && apt-get -y install \
43
43
wget \
44
44
zip
45
45
46
- ENV bazelVersion 3.5 .0
46
+ ENV bazelVersion 3.7 .0
47
47
48
48
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
49
49
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ RUN apt-get update && apt-get -y install \
41
41
wget \
42
42
zip
43
43
44
- ENV bazelVersion 3.5 .0
44
+ ENV bazelVersion 3.7 .0
45
45
46
46
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
47
47
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
44
44
45
45
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
46
46
47
- ENV bazelVersion 3.5 .0
47
+ ENV bazelVersion 3.7 .0
48
48
49
49
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
50
50
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ RUN apt-get update && apt-get -y install \
45
45
46
46
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
47
47
48
- ENV bazelVersion 3.5 .0
48
+ ENV bazelVersion 3.7 .0
49
49
50
50
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
51
51
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ RUN yum -y install \
47
47
48
48
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk
49
49
50
- ENV bazelVersion 3.5 .0
50
+ ENV bazelVersion 3.7 .0
51
51
52
52
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
53
53
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 10
42
42
43
43
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
44
44
45
- ENV bazelVersion 3.5 .0
45
+ ENV bazelVersion 3.7 .0
46
46
47
47
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
48
48
&& chmod +x /tmp/bazel.sh \
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [ "$#" -ne 1 ]; then
29
29
exit 1
30
30
fi
31
31
BAZEL_OS=$1
32
- BAZEL_VERSION=3.5 .0
32
+ BAZEL_VERSION=3.7 .0
33
33
34
34
# Install Bazel
35
35
BAZEL_INSTALLER=bazel-$BAZEL_VERSION -installer-$BAZEL_OS -x86_64.sh
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ install_marathon() {
44
44
service marathon start
45
45
}
46
46
47
- bazelVersion=3.5 .0
47
+ bazelVersion=3.7 .0
48
48
bazel_install () {
49
49
apt-get install -y automake cmake gcc g++ zlib1g-dev zip pkg-config wget libssl-dev libunwind-dev
50
50
mkdir -p /opt/bazel
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst
34
34
35
35
### Step 2 -- Install Bazel
36
36
``` bash
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
37
+ wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.7 .0/bazel-3.7 .0-installer-darwin-x86_64.sh
38
38
chmod +x /tmp/bazel.sh
39
39
/tmp/bazel.sh --user
40
40
```
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ RUN apt-get update && apt-get install -y nodejs
52
52
53
53
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
54
54
55
- ENV bazelVersion 3.5 .0
55
+ ENV bazelVersion 3.7 .0
56
56
RUN wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/$bazelVersion/bazel-$bazelVersion-installer-linux-x86_64.sh \
57
57
&& chmod +x /tmp/bazel.sh \
58
58
&& /tmp/bazel.sh --user
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const bazelVersions = {
38
38
'0.20.0-incubating' : '0.14.1' ,
39
39
'0.20.1-incubating' : '0.26.0' ,
40
40
'0.20.2-incubating' : '0.26.0' ,
41
- 'latest' : '3.5 .0' ,
41
+ 'latest' : '3.7 .0' ,
42
42
}
43
43
44
44
function replaceBazel ( version ) {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst
35
35
36
36
### Step 2 -- Install Bazel
37
37
``` bash
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
38
+ wget -O /tmp/bazel.sh https://github.com/bazelbuild/bazel/releases/download/3.7 .0/bazel-3.7 .0-installer-darwin-x86_64.sh
39
39
chmod +x /tmp/bazel.sh
40
40
/tmp/bazel.sh --user
41
41
```
You can’t perform that action at this time.
0 commit comments