Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup: Upgrade recommended Bazel version to 5.1.0 for Linux #16878

Merged
merged 1 commit into from
Mar 28, 2022
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
4 changes: 2 additions & 2 deletions doc/_pages/from_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ integration. Any other configurations are provided on a best-effort basis.

| Operating System ⁽⁴⁾ | Architecture | Python | Bazel | CMake | C/C++ Compiler ⁽⁵⁾ | Java |
|----------------------------------|--------------|---------|-------|-------|------------------------------------|-------------------------------|
| Ubuntu 18.04 LTS (Bionic Beaver) | x86_64 ⁽¹⁾ | 3.6 ⁽³⁾ | 5.0 | 3.10 | GCC 7.5 (default) or Clang 9 | OpenJDK 11 |
| Ubuntu 20.04 LTS (Focal Fossa) | x86_64 ⁽¹⁾ | 3.8 ⁽³⁾ | 5.0 | 3.16 | GCC 9.3 (default) or Clang 9 | OpenJDK 11 |
| Ubuntu 18.04 LTS (Bionic Beaver) | x86_64 ⁽¹⁾ | 3.6 ⁽³⁾ | 5.1 | 3.10 | GCC 7.5 (default) or Clang 9 | OpenJDK 11 |
| Ubuntu 20.04 LTS (Focal Fossa) | x86_64 ⁽¹⁾ | 3.8 ⁽³⁾ | 5.1 | 3.16 | GCC 9.3 (default) or Clang 9 | OpenJDK 11 |
| macOS Big Sur (11) | x86_64 ⁽²⁾ | 3.9 ⁽³⁾ | 5.0 | 3.19 | Apple LLVM 12.0.0 (Xcode 12.4) | AdoptOpenJDK 15 (HotSpot JVM) |
| macOS Monterey (12) | x86_64 ⁽²⁾ | 3.9 ⁽³⁾ | 5.0 | 3.19 | Apple LLVM 12.0.0 (Xcode 12.4) | AdoptOpenJDK 15 (HotSpot JVM) |

Expand Down
6 changes: 3 additions & 3 deletions setup/ubuntu/source_distribution/install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,6 @@ EOF
)

dpkg_install_from_wget \
bazel 5.0.0 \
https://releases.bazel.build/5.0.0/release/bazel_5.0.0-linux-x86_64.deb \
e3361645ccd731abc424bb3a322d8e6f513b7258f5ca11ff04d6067aff5d09b1
bazel 5.1.0 \
https://releases.bazel.build/5.1.0/release/bazel_5.1.0-linux-x86_64.deb \
3d54055f764cfb61b5416f0a45d2d3df19c30d301d4da81565595cbe2e36a220
2 changes: 1 addition & 1 deletion tools/wheel/image/provision-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu -o pipefail

readonly BAZEL_VERSION=5.0.0
readonly BAZEL_VERSION=5.1.0
readonly BAZEL_ROOT=https://github.com/bazelbuild/bazel/releases/download


Expand Down
2 changes: 1 addition & 1 deletion tools/workspace/drake_visualizer/image/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eu -o pipefail

export DEBIAN_FRONTEND=noninteractive

readonly BAZEL_VERSION=5.0.0
readonly BAZEL_VERSION=5.1.0
readonly BAZEL_ROOT=https://github.com/bazelbuild/bazel/releases/download

# Install prerequisites.
Expand Down