Skip to content
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

feat: 'e clean' for removing artifacts #680

Open
wants to merge 1 commit into
base: pr-download
Choose a base branch
from

Conversation

samuelmaddock
Copy link
Member

Breaking this out as I think this warrants more discussion.

#679 introduces an artifacts/ directory for downloading pull request artifacts. To mitigate this directory growing indefinitely, I'm proposing e clean and e clean --stale.

  • e clean will remove the artifacts/ directory
  • e clean --stale removes only top-level stale files in artifacts/ (older than one month)

So folks are aware of these commands existence—and that stale files exist—we can display a warning.

$ e pr download-dist 44653
Stale artifact(s) found:
        pr_44653_darwin_arm64

Run 'e clean --stale' to cleanup artifacts.

This presents the question of how often and when to display this warning.

A. Warn about stale files each time e pr download-dist is run

  • Check for stale files and log warning

B. Warn about stale files warning on e startup

  • Every time build-tools is invoked, we check for stale files and report on them
  • To prevent spam, only warn once a week.
  • localStorage API for caching state

Maybe this all too complex and we shouldn't do this at all? Open to feedback.

Copy link
Member

@MarshallOfSound MarshallOfSound left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't love the e clean name. Build Tools primary function is building electron, therefore e clean to me implies "clean my build" (other build tools have clean and it wipes the world).

This should probably be a subcommand of pr, but that doesn't feel right either. Honestly the original command probably shouldn't be pr rather something on ci.

E.g.

e ci download
e ci clear-downloads

@samuelmaddock
Copy link
Member Author

@MarshallOfSound Agreed on e clean not feeling quite right. It was mostly chosen to avoid analysis paralysis.

I think I was considering artifacts/ to be something broader than only PR downloads. However, maybe I should limit the scope initially. How about this:

  • e pr download-dist as it exists
    • Logs notice about stale dist artifacts
  • e pr clean-dist removes all dist artifacts
  • e pr clean-dist --stale removes all stale dist artifacts

If we come up with another use case for artifact files, we could consider moving to a top-level clean command of some sort.

Regarding pr vs ci. I guess my mind goes to "I want to download this PR's artifacts" rather than "I want to download this CI's artifacts"

@ckerr
Copy link
Member

ckerr commented Nov 19, 2024

@MarshallOfSound do you have a preference on whether or not to merge first or to find a new name first? 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants