Skip to content

Commit 4bd48bc

Browse files
authored
Merge pull request #212289 from botantony/llama.cpp-livecheck
llama.cpp: update formula less often
2 parents 195daab + cea9358 commit 4bd48bc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Formula/l/llama.cpp.rb

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ class LlamaCpp < Formula
88
license "MIT"
99
head "https://github.com/ggerganov/llama.cpp.git", branch: "master"
1010

11+
# llama.cpp publishes new tags too often
12+
# Having multiple updates in one day is not very convenient
13+
# Update formula only after 10 new tags (1 update per ≈2 days)
14+
#
15+
# `trottle 10` doesn't work
1116
livecheck do
1217
url :stable
13-
regex(/^v?b(\d+(?:\.\d+)*)$/i)
18+
regex(/^v?b(\d+(?:\.\d+)*0)$/i)
1419
end
1520

1621
bottle do

0 commit comments

Comments
 (0)