Drop nonexistent DerivedData from SPM cache path#33
Merged
Conversation
PR #30 (Dependabot bumping actions/cache to v5) failed in the spm-test job: the cache step's save phase errored on a path that doesn't exist. That same job had been listing ~/Library/Developer/Xcode/DerivedData as a cache target, which is created by Xcode but never by `swift test`. v4 silently ignored missing paths; v5 fails the post-step. The path was useless even under v4 — the directory was always empty on these runs. Drop it. Keep `.build`, which `swift test` actually writes to. Once this lands, comment `@dependabot rebase` on PR #30 and the v5 bump will pass. https://claude.ai/code/session_01TQi3WNVCqQ9QFufs5XogjK
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #33 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 2 2
Lines 83 83
=========================================
Hits 83 83 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR #30 (Dependabot bumping actions/cache to v5) failed in the
spm-test job: the cache step's save phase errored on a path that
doesn't exist. That same job had been listing
~/Library/Developer/Xcode/DerivedData as a cache target, which is
created by Xcode but never by
swift test. v4 silently ignoredmissing paths; v5 fails the post-step.
The path was useless even under v4 — the directory was always empty
on these runs. Drop it. Keep
.build, whichswift testactuallywrites to.
Once this lands, comment
@dependabot rebaseon PR #30 and the v5bump will pass.
https://claude.ai/code/session_01TQi3WNVCqQ9QFufs5XogjK