Skip to content

Commit

Permalink
bazel: Use bazel-3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
soonho-tri committed Dec 10, 2020
1 parent 1881f55 commit 11ce68c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions setup/ubuntu/16.04/install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ command_exists () {
}

if ! command_exists bazel; then
BAZEL_VERSION=3.7.0
BAZEL_VERSION=3.7.1
BAZEL_DEBNAME=bazel_${BAZEL_VERSION}-linux-x86_64.deb
BAZEL_URL=https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/${BAZEL_DEBNAME}
BAZEL_SHA256=2fc8dfb85328112a9d67f614e33026be74c2ac95645ed8e88896366eaa3d8fc3
BAZEL_SHA256=2c6c68c23618ac3f37c73ba111f79212b33968217e1a293aa9bf5a17cdd3212b
apt-get install -y --no-install-recommends wget
wget "${BAZEL_URL}"
if echo "${BAZEL_SHA256} ${BAZEL_DEBNAME}" | sha256sum -c; then
Expand Down
4 changes: 2 additions & 2 deletions setup/ubuntu/18.04/install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ command_exists () {
}

if ! command_exists bazel; then
BAZEL_VERSION=3.7.0
BAZEL_VERSION=3.7.1
BAZEL_DEBNAME=bazel_${BAZEL_VERSION}-linux-x86_64.deb
BAZEL_URL=https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/${BAZEL_DEBNAME}
BAZEL_SHA256=2fc8dfb85328112a9d67f614e33026be74c2ac95645ed8e88896366eaa3d8fc3
BAZEL_SHA256=2c6c68c23618ac3f37c73ba111f79212b33968217e1a293aa9bf5a17cdd3212b
apt-get install -y --no-install-recommends wget
wget "${BAZEL_URL}"
if echo "${BAZEL_SHA256} ${BAZEL_DEBNAME}" | sha256sum -c; then
Expand Down
4 changes: 2 additions & 2 deletions setup/ubuntu/20.04/install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ EOF
)

# Install bazel
BAZEL_VERSION=3.7.0
BAZEL_VERSION=3.7.1
BAZEL_DEBNAME=bazel_${BAZEL_VERSION}-linux-x86_64.deb
BAZEL_URL=https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/${BAZEL_DEBNAME}
BAZEL_SHA256=2fc8dfb85328112a9d67f614e33026be74c2ac95645ed8e88896366eaa3d8fc3
BAZEL_SHA256=2c6c68c23618ac3f37c73ba111f79212b33968217e1a293aa9bf5a17cdd3212b
apt-get install -y --no-install-recommends wget
wget "${BAZEL_URL}"
if echo "${BAZEL_SHA256} ${BAZEL_DEBNAME}" | sha256sum -c; then
Expand Down

0 comments on commit 11ce68c

Please sign in to comment.