Skip to content

Commit 15698f0

Browse files
committed
garble: pin to use go1.22
Signed-off-by: Rui Chen <[email protected]>
1 parent 62c672c commit 15698f0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Formula/g/garble.rb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Garble < Formula
44
url "https://github.com/burrowers/garble/archive/refs/tags/v0.12.1.tar.gz"
55
sha256 "98ade316176d434f298bdb36e4c421e3c4c33668cfd2922d358f7f0403566500"
66
license "BSD-3-Clause"
7-
revision 6
7+
revision 7
88
head "https://github.com/burrowers/garble.git", branch: "master"
99

1010
bottle do
@@ -17,7 +17,9 @@ class Garble < Formula
1717
sha256 cellar: :any_skip_relocation, x86_64_linux: "99293abbb6731948f9fd9d8166e03dc26f964b343b34ba5701b2a4ff01818ce0"
1818
end
1919

20-
depends_on "go" => [:build, :test]
20+
# panic: package "internal/coverage/cfile" still missing after go list call
21+
# upstream bug report, https://github.com/operator-framework/operator-sdk/issues/4793
22+
depends_on "[email protected]" => [:build, :test]
2123
depends_on "git"
2224

2325
def install
@@ -26,6 +28,8 @@ def install
2628
end
2729

2830
test do
31+
ENV.prepend_path "PATH", Formula["[email protected]"].bin
32+
2933
(testpath/"hello.go").write <<~EOS
3034
package main
3135

0 commit comments

Comments
 (0)