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

x/build/dashboard: atLeastGo1/atMostGo1 helpers handle non-release branches incorrectly #37965

Open
dmitshur opened this issue Mar 20, 2020 · 0 comments
Labels
Builders x/build issues (builders, bots, dashboards) NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@dmitshur
Copy link
Contributor

dmitshur commented Mar 20, 2020

As a follow-up to #37953, we can improve the atLeastGo1 and atMostGo1 helpers so that they operate closer to what the name suggests, and report only whether the Go version meets a certain number. Right now they report suboptimal results on non-release branches in some situations.

For example, the master branch is currently where Go 1.15 is being developed, but atLeastGo1(goBranch, 16) reports true. It should be false.

Similarly, atMostGo1(goBranch, 15) makes an incorrect assumption that master is already greater than 1.15, and reports false. It should be true.

cmd/coordinator can look up precise Go release information (via maintnerClient), and use it to make a better decision. We'll need to modify the signature of BuildsRepoPostSubmit to pass more information to it.

/cc @toothrot @cagedmantis

@dmitshur dmitshur added Builders x/build issues (builders, bots, dashboards) NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. labels Mar 20, 2020
@dmitshur dmitshur added this to the Unreleased milestone Mar 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Builders x/build issues (builders, bots, dashboards) NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests

1 participant