-
Improvement
-
Resolution: Unresolved
-
Major
The first build of a branch project should have a UI link like Previous Build but pointing to the build on the project corresponding to the base branch (such as master for Git) which its SCM revision links to. Should use SCMSource.parentHeads; major SCM plugins needs to implement this API. When present, the base build should be used as a baseline for determining the SCM changelog, so that a user can see the changes made in the SCM commit initiating a branch. An API should also be introduced to core so that plugins such as junit can use this backlink rather than previousBuild for purposes of comparing test results; the same could be true of static analysis, code coverage, etc.
Merely changing Run.getPreviousBuild to return a build from another Job is unsafe; many plugins may assume that the Job pairs match, or that getNextBuild is the inverse operation, etc. Perhaps we need an API addition to Run such as
/** * Gets the previous build to be used for purposes of comparison of SCM commits, test results, and other reports. * If {@link #getPreviousBuild} is not null, that should be returned. * Otherwise, this may instead return a build of a {@link Job} of the same type representing a base branch from which this branch was forked. */ public @CheckForNull RunT getPreviousLogicalBuild() { return getPreviousBuild(); }
which would most closely preserve existing semantics: build-to-build comparisons.
Additionally/alternately:
/** * Gets a build to be used for purposes of comparison of SCM commits, test results, and other reports. * By default, {@link #getPreviousBuild}. * For a job representing a branch forked from a base branch, this should return the build of the branch point. * Branch points may change as a base branch is manually remerged into a feature branch. * And jobs may be automatically building against the proposed merge of a branch, * in which case the base build is likely to be the latest build of the base branch. */ public @CheckForNull RunT getBaseBuild() { return getPreviousBuild(); }
which would allow a plugin to display the cumulative changes from the base branch, which may be more relevant.
(For example, in a build of a PR you probably want to know whether there are FindBugs regressions relative to the base branch, not whether the 13th commit to the PR introduced regressions relative to the 12th commit.)
- is duplicated by
-
JENKINS-36591 Pull Request builds don't have the change set list.
- Resolved
-
JENKINS-44849 Changeset for first run of generated job is empty
- Resolved
- is related to
-
JENKINS-4162 Changelog empty when building new branch
- Open
-
JENKINS-46086 A changelog should be recorded for the first build of a PR
- Closed
- relates to
-
JENKINS-14138 New git branch has empty changelist
- Open
-
JENKINS-49079 Copy job properties for new branch project from base/default branch
- Open
-
JENKINS-22896 choose which job should be the reference build
- In Progress
-
JENKINS-46028 Use primary job as fallback when searching for test records
- Resolved