-
Notifications
You must be signed in to change notification settings - Fork 22
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
Build strategy based on containers with cache #214
Conversation
Makefile
Outdated
# Build the container cache image | ||
.PHONY: build-cache | ||
build-cache: | ||
${CONTAINER_MANAGER} build -t ${IMG_CACHE} -f oci/Containerfile.cache . |
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.
Who maintains the lifecycle of this cache?
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 idea would be self managed on every merge to main a gh action will build the image and push it
b621a39
to
db71ade
Compare
@benoitf added you here as per our discussions about a way to move the cache into a building strategy based on Containerfiles |
This depends on #222 |
Signed-off-by: Adrian Riobo Lorenzo <[email protected]>
.github/workflows/release.yaml
Outdated
@@ -24,7 +24,7 @@ on: | |||
|
|||
jobs: | |||
release: | |||
runs-on: ubuntu-latest | |||
runs-on: ubuntu-22.04 |
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.
24.04 ?
Signed-off-by: Adrian Riobo Lorenzo <[email protected]>
Fix #213