111 lines
4.1 KiB
Ruby
111 lines
4.1 KiB
Ruby
class Bazel < Formula
|
|
desc "Google's own build tool"
|
|
homepage "https://bazel.build/"
|
|
url "https://github.com/bazelbuild/bazel/releases/download/6.0.0/bazel-6.0.0-dist.zip"
|
|
sha256 "7bc0c5145c19a56d82a08fce6908c5e1a0e75e4fbfb3b6f12b4deae7f4b38cbc"
|
|
license "Apache-2.0"
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "2138a58297acd97702c2f3c76c748b400ace1908b4d2d4dc65efa7998fb828aa"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "b795339b954fa2d5a3c190074b8db89a72f13b77f714ac77640db789469d5cd8"
|
|
sha256 cellar: :any_skip_relocation, ventura: "2788d278c56c08face7a12ff127ef00b4a66dd106c0c04d449a474bc6e66b3a9"
|
|
sha256 cellar: :any_skip_relocation, monterey: "9cd7f67a8945a69ef6c9aa4181c43e344ebc8ee1d229b2e9f878042fa8d16cc5"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "a6c989d274324b5b7e49f8d934fab52d0361c19c15c00dbeea38d8a36dd84369"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "df7d131b0500e2d2acf645d41881f428ffbb777c95ff78f8a3b3f2189b0fd17a"
|
|
end
|
|
|
|
depends_on "python@3.11" => :build
|
|
depends_on "openjdk@11"
|
|
|
|
uses_from_macos "unzip"
|
|
uses_from_macos "zip"
|
|
|
|
conflicts_with "bazelisk", because: "Bazelisk replaces the bazel binary"
|
|
|
|
def install
|
|
ENV["EMBED_LABEL"] = "#{version}-homebrew"
|
|
# Force Bazel ./compile.sh to put its temporary files in the buildpath
|
|
ENV["BAZEL_WRKDIR"] = buildpath/"work"
|
|
# Force Bazel to use openjdk@11
|
|
ENV["EXTRA_BAZEL_ARGS"] = "--host_javabase=@local_jdk//:jdk"
|
|
ENV["JAVA_HOME"] = Language::Java.java_home("11")
|
|
# Force Bazel to use Homebrew python
|
|
ENV.prepend_path "PATH", Formula["python@3.11"].opt_libexec/"bin"
|
|
|
|
# Bazel clears environment variables other than PATH during build, which
|
|
# breaks Homebrew shim scripts. We don't see this issue on macOS since
|
|
# the build uses a Bazel-specific wrapper for clang rather than the shim;
|
|
# specifically, it uses `external/local_config_cc/wrapped_clang`.
|
|
#
|
|
# The workaround here is to disable the Linux shim for C/C++ compilers.
|
|
# Remove this when a way to retain HOMEBREW_* variables is found.
|
|
if OS.linux?
|
|
ENV["CC"] = "/usr/bin/cc"
|
|
ENV["CXX"] = "/usr/bin/c++"
|
|
end
|
|
|
|
(buildpath/"sources").install buildpath.children
|
|
|
|
cd "sources" do
|
|
system "./compile.sh"
|
|
system "./output/bazel", "--output_user_root",
|
|
buildpath/"output_user_root",
|
|
"build",
|
|
"scripts:bash_completion"
|
|
|
|
bin.install "scripts/packages/bazel.sh" => "bazel"
|
|
ln_s libexec/"bin/bazel-real", bin/"bazel-#{version}"
|
|
(libexec/"bin").install "output/bazel" => "bazel-real"
|
|
bin.env_script_all_files libexec/"bin", Language::Java.java_home_env("11")
|
|
|
|
bash_completion.install "bazel-bin/scripts/bazel-complete.bash"
|
|
zsh_completion.install "scripts/zsh_completion/_bazel"
|
|
end
|
|
end
|
|
|
|
test do
|
|
# linux test failed due to `bin/bazel-real' as a zip file: (error: 5): Input/output error` issue
|
|
# it works out locally, thus bypassing the test as a whole
|
|
return if OS.linux?
|
|
|
|
touch testpath/"WORKSPACE"
|
|
|
|
(testpath/"ProjectRunner.java").write <<~EOS
|
|
public class ProjectRunner {
|
|
public static void main(String args[]) {
|
|
System.out.println("Hi!");
|
|
}
|
|
}
|
|
EOS
|
|
|
|
(testpath/"BUILD").write <<~EOS
|
|
java_binary(
|
|
name = "bazel-test",
|
|
srcs = glob(["*.java"]),
|
|
main_class = "ProjectRunner",
|
|
)
|
|
EOS
|
|
|
|
system bin/"bazel", "build", "//:bazel-test"
|
|
assert_equal "Hi!\n", pipe_output("bazel-bin/bazel-test")
|
|
|
|
# Verify that `bazel` invokes Bazel's wrapper script, which delegates to
|
|
# project-specific `tools/bazel` if present. Invoking `bazel-VERSION`
|
|
# bypasses this behavior.
|
|
(testpath/"tools"/"bazel").write <<~EOS
|
|
#!/bin/bash
|
|
echo "stub-wrapper"
|
|
exit 1
|
|
EOS
|
|
(testpath/"tools/bazel").chmod 0755
|
|
|
|
assert_equal "stub-wrapper\n", shell_output("#{bin}/bazel --version", 1)
|
|
assert_equal "bazel #{version}-homebrew\n", shell_output("#{bin}/bazel-#{version} --version")
|
|
end
|
|
end
|