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

Job.fastUpdateNextBuildNumber #9019

Merged
merged 1 commit into from
Mar 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions core/src/main/java/hudson/model/Job.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
import org.jfree.ui.RectangleInsets;
import org.jvnet.localizer.Localizable;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.Beta;
import org.kohsuke.accmod.restrictions.DoNotUse;
import org.kohsuke.accmod.restrictions.NoExternalUse;
import org.kohsuke.args4j.Argument;
Expand Down Expand Up @@ -426,6 +427,16 @@
}
}

/**
* Unconditionally sets the value of {@link #getNextBuildNumber}.
* Unlike {@link #updateNextBuildNumber} this does not save the number on disk,
* and does not check {@link #getLastBuild}.
*/
@Restricted(Beta.class)
public void fastUpdateNextBuildNumber(int nextBuildNumber) {
this.nextBuildNumber = nextBuildNumber;
}

Check warning on line 438 in core/src/main/java/hudson/model/Job.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered lines

Lines 437-438 are not covered by tests

/**
* Returns the configured build discarder for this job, via {@link BuildDiscarderProperty}, or null if none.
*/
Expand Down
Loading