-
Notifications
You must be signed in to change notification settings - Fork 156
Builds with multiple --cache-from images #323
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
Builds with multiple --cache-from images #323
Conversation
small wording change to trigger a new build
|
@richafrank Added comments above which are causing the build to fail. Please can you look into those when possible. |
Small text change to trigger a new build
|
@nsuma8989 I just pushed a linter fix. Is there a way for me to trigger a buildkite build when I have changes to test? |
|
@richafrank Option to trigger new builds for open PR and third-party repos is disabled so it is not triggering build. I can trigger a build for your new commits like a did for the latest commit. linter fix did not fully address it based on the latest build. |
|
Ok, thanks @nsuma8989 , I'll ping you about builds as I need. Looks like the linter issue is that this plugin no longer supports building and pushing in the same step of the pipeline. Is that intentional? We had been using that ability to great effect, relying on the fact that the pushing agent was guaranteed to have the image ready. Is the expectation now that one agent will build the image and another might end up pushing it? |
@richafrank Based on the linter error, it is actually complaining about missing required parameter "run" |
|
Thanks @nsuma8989 . Please correct me if I'm misunderstanding. I see two errors reported by the linter. The first is as you said, and the second is: If I add a dummy the linter still reports the second error, which I believe is saying that only one of |
@richafrank Thank you for fixing the first issue in the linter. For second issue, validation schema was always using "OneOf" as you can see from this initial PR #119. So schema validation did not change recently. Please can you confirm that you are able to use build and push in single step using this plugin ? |
|
Closing this one as it is the same (and contained in) #328 |
We're using this to
--cache-fromintermediate and final stages of a multi-stage docker build, instead of busting the cache every time on building the intermediate target.Same as #271 , but re-opening to try to trigger the buildkite webhook for the PR.