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

Don't scan hidden directories in arduino-builder (.git, etc.) #366

Merged
merged 3 commits into from
Sep 5, 2019

Commits on Aug 30, 2019

  1. Don't scan hidden directories in arduino-builder

    Arduino-builder scans the core to determine if core config files have
    changed between invocations.  Unfortunately, it goes into SCCS dirs
    such as .git (which can have 100,000+ files).  This is wasted effort
    and can cause massive amounts of runtime and memory use when core
    developers are building in their git clones.
    
    Use a new function already added by the builder/utils.go to determine
    if a file or folder is SCCS, and if so skip it in the rebuild-required
    check.
    
    Fixes arduino/arduino-builder#327
    
    Signed-off-by: Earle F. Philhower, III <earlephilhower@yahoo.com>
    earlephilhower committed Aug 30, 2019
    Configuration menu
    Copy the full SHA
    ff7f0d1 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2019

  1. Configuration menu
    Copy the full SHA
    ca843a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e77ecc View commit details
    Browse the repository at this point in the history