understanding the error message from test-bot when using the --keep-old flag #4935
-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The reason for this is because replacing a bottle requires incrementing bottle do
root_url "https://ghcr.io/v2/freecad/freecad"
rebuild 1 # <--- global rebuild
sha256 cellar: :any, big_sur: "5d63c496f3a0682a414d31207d290fbde724a9b8b2ba8cf8aaa195bf19a27179"
sha256 cellar: :any, catalina: "a28dbd0a545c76ea8caef7aa5533622bfec130a4985724702bc67d0eb031e239"
sha256 cellar: :any, mojave: "45f987db03e2a0fa996c855b5f3987ac904fde6a41ecb64f8ffbbdca28a073a6"
end so you can't rebuild specific bottles without rebuilding all bottles. If we had per-bottle rebuilds, what you describe could work. This currently isn't supported. |
Beta Was this translation helpful? Give feedback.
--keep-old
is supported for adding additional bottles, but you can't replace existing bottles.The reason for this is because replacing a bottle requires incrementing
rebuild
(since a released bottle is immutable). Rebuild numbering however is currently scoped globally, e.g.so you can'…