-
Notifications
You must be signed in to change notification settings - Fork 288
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
Fix deletion of ephemeral builder #2260
Conversation
`createEphemeralBuilder` mutates the provided `rawBuilderImage`, so we must save the image name before this method is called. Signed-off-by: Natalie Arellano <narellano@vmware.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2260 +/- ##
==========================================
+ Coverage 70.02% 70.03% +0.01%
==========================================
Files 254 254
Lines 18673 18674 +1
==========================================
+ Hits 13074 13076 +2
+ Misses 4731 4730 -1
Partials 868 868
Flags with carried forward coverage won't be shown. Click here to find out more. |
Confirmed manually that with this change we don't see a |
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.
@natalieparellano Thank you for looking into this - I've tested locally using the artifact attached to the GitHub Actions run and can confirm it resolves the issue (using the STR from #2255) :-)
Would it be possible to release a new version of Pack CLI that includes this fix? |
createEphemeralBuilder
mutates the providedrawBuilderImage
, so we must save the image name before this method is called.Summary
Output
Before
After
Documentation
Related
Resolves #___