-
Notifications
You must be signed in to change notification settings - Fork 131
ci(release): prune cloud builder cache before building #968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,9 +1,9 @@ | ||||||||||||||||
| # syntax=docker/dockerfile:1 | ||||||||||||||||
|
|
||||||||||||||||
| ARG GO_VERSION=1.25 | ||||||||||||||||
| ARG LLAMA_SERVER_VERSION=b9501 | ||||||||||||||||
| ARG LLAMA_SERVER_VERSION=b9592 | ||||||||||||||||
| ARG LLAMA_SERVER_VARIANT=cpu | ||||||||||||||||
| ARG LLAMA_UPSTREAM_IMAGE=ghcr.io/ggml-org/llama.cpp:server-vulkan-b9501 | ||||||||||||||||
| ARG LLAMA_UPSTREAM_IMAGE=ghcr.io/ggml-org/llama.cpp:server-vulkan-b9592 | ||||||||||||||||
|
Comment on lines
+4
to
+6
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (bug_risk): Reduce the risk of version skew between Both variables currently encode
Suggested change
|
||||||||||||||||
|
|
||||||||||||||||
| ARG VERSION=dev | ||||||||||||||||
|
|
||||||||||||||||
|
|
||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pull request title and description state that a
docker buildx prune -afstep is being added to the release workflow to resolve theResourceExhaustedcache issue. However, the actual changes in this PR only consist of version bumps in.versions,Dockerfile, and thellama.cppsubmodule. The CI/CD workflow file containing the prune step is missing from this pull request. Please include the workflow changes to ensure the cache is pruned before building.