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

Ensure dynamic Buildbot steps have unique names #525

Merged
merged 1 commit into from Oct 28, 2016

Commits on Oct 28, 2016

  1. Ensure dynamic Buildbot steps have unique names

    Buildbot requires that each step in a build has a unique name,
    and uses this property to e.g. disambiguate log files.
    By default, each step's name reflect what kind of step it is,
    e.g. `git` or `test`.
    
    Add count suffixes to the end of the step name if there are
    multiple steps of the same type to disambiguate them.
    (Buildbot already does this internally for steps added statically
    in the `setupBuild` method).
    
    This requires checking all previously-added steps for name collisions,
    so add all the steps at one time to amortize this cost.
    aneeshusa committed Oct 28, 2016
You can’t perform that action at this time.