Skip to content

Commit

Permalink
workspace: warn instead of error for macOS Big Sur (RobotLocomotion#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiesnape authored Dec 1, 2020
1 parent cd6b64c commit c96dca7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/workspace/os.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,12 @@ def _determine_macos(repository_ctx):
macos_release = ".".join(major_minor_versions)

# Match supported macOS release(s).
if macos_release in ["10.15"]:
if macos_release in ["10.15", "11.0"]:
if macos_release == "11.0":
print(
"WARNING: macOS Big Sur 11.0 is NOT yet supported. " +
"Compilation, tests, and/or other functionality may fail.",
)
return _make_result(macos_release = macos_release)

# Nothing matched.
Expand Down

0 comments on commit c96dca7

Please sign in to comment.