Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/testing.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Testing ESP with Bazel #

ESP is built using [Bazel](http://bazel.io) build tool. Install
[Bazel](http://bazel.io) version 0.4.3, following the [Bazel
[Bazel](http://bazel.io) version 0.4.4, following the [Bazel
documentation](http://bazel.io/docs/install.html).

# Building ESP #
Expand Down
4 changes: 2 additions & 2 deletions doc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ On Linux, install:
## Bazel ##

ESP is built using [Bazel](http://bazel.io) build tool. Install
[Bazel](http://bazel.io) version 0.4.3, following the [Bazel
[Bazel](http://bazel.io) version 0.4.4, following the [Bazel
documentation](http://bazel.io/docs/install.html).

*Note:* Bazel is under active development and from time to time, ESP continuous
integration systems are upgraded to a new version of Bazel. Currently, ESP
requires Bazel 0.4.3.
requires Bazel 0.4.4.

The version of Bazel used by ESP continuous integration systems can be found in
the [linux-install-software](/script/linux-install-software)
Expand Down
4 changes: 2 additions & 2 deletions script/tools/linux-install-bazel
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fi
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
. ${DIR}/all-utilities || { echo "Cannot load Bash utilities" ; exit 1 ; }

BAZEL_VERSION='0.4.3'
BAZEL_VERSION='0.4.4'
BAZEL_BASE_URL='https://github.com/bazelbuild/bazel/releases/download'
BAZEL_SH="bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh"
BAZEL_URL="${BAZEL_BASE_URL}/${BAZEL_VERSION}/${BAZEL_SH}"
Expand All @@ -51,7 +51,7 @@ function update_bazel() {
fi

if [[ "${BAZEL_VERSION}" != "${bazel_current}" ]]; then
retry -n 3 wget -q -nc -P "${BAZEL_DIRECTORY}" "${BAZEL_URL}" \
retry -n 3 ${SUDO} wget -q -nc -P "${BAZEL_DIRECTORY}" "${BAZEL_URL}" \
|| error_exit "Could not download bazel"
${SUDO} chmod +x "${BAZEL_DIRECTORY}/${BAZEL_SH}" \
|| error_exit "Could not mark bazel shell as executable"
Expand Down
2 changes: 1 addition & 1 deletion script/travis/install
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
##################################################

# Download (update the URL when upgrading Bazel)
BAZEL_INSTALLER_URL='https://github.com/bazelbuild/bazel/releases/download/0.4.3/bazel-0.4.3-installer-linux-x86_64.sh'
BAZEL_INSTALLER_URL='https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel-0.4.4-installer-linux-x86_64.sh'
curl -L "${BAZEL_INSTALLER_URL}" -o ./bazel-installer.sh || \
error_exit "Failed to get the bazel installer from ${BAZEL_INSTALLER_URL}"
chmod +x ./bazel-installer.sh
Expand Down