Bazel 5.3.2 => 7.2.1 (#10167)

This commit is contained in:
Ed Reel
2024-07-17 14:33:35 -05:00
committed by GitHub
parent 4610f5cca1
commit 1c7a3c0032

View File

@@ -3,16 +3,16 @@ require 'package'
class Bazel < Package
description 'a fast, scalable, multi-language and extensible build system'
homepage 'https://bazel.build/'
version '5.3.2'
version '7.2.1'
license 'Apache-2.0'
compatibility 'x86_64'
source_url 'https://github.com/bazelbuild/bazel/releases/download/5.3.2/bazel-5.3.2-linux-x86_64'
source_sha256 '973e213b1e9207ccdd3ea4730c0f92cbef769ec112ac2b84980583220d8db845'
source_url "https://github.com/bazelbuild/bazel/releases/download/#{version}/bazel-#{version}-linux-x86_64"
source_sha256 '80ccd1ecb4b88750fbe5d7622d67072fddcba9da7808f13356555e480bf67875'
no_compile_needed
no_shrink
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.install "bazel-#{version}-linux-#{ARCH}", "#{CREW_DEST_PREFIX}/bin/bazel", mode: 0o755
end
end