Java Code Examples for hudson.model.Executor#interrupt()
The following examples show how to use
hudson.model.Executor#interrupt() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SubBuildScheduler.java From DotCi with MIT License | 6 votes |
public void cancelSubBuilds(final PrintStream logger) { final Queue q = getJenkins().getQueue(); synchronized (q) { final int n = this.dynamicBuild.getNumber(); for (final Item i : q.getItems()) { final ParentBuildAction parentBuildAction = i.getAction(ParentBuildAction.class); if (parentBuildAction != null && this.dynamicBuild.equals(parentBuildAction.getParent())) { q.cancel(i); } } for (final DynamicSubProject c : this.dynamicBuild.getAllSubProjects()) { final DynamicSubBuild b = c.getBuildByNumber(n); if (b != null && b.isBuilding()) { final Executor exe = b.getExecutor(); if (exe != null) { logger.println(Messages.MatrixBuild_Interrupting(ModelHyperlinkNote.encodeTo(b))); exe.interrupt(); } } } } }
Example 2
Source File: PhabricatorBuildWrapper.java From phabricator-jenkins-plugin with MIT License | 5 votes |
/** * Abort running builds when new build referencing same revision is scheduled to run */ @Override public void preCheckout(AbstractBuild build, Launcher launcher, BuildListener listener) throws IOException, InterruptedException { String abortOnRevisionId = getAbortOnRevisionId(build); // If ABORT_ON_REVISION_ID is available if (!CommonUtils.isBlank(abortOnRevisionId)) { // Create a cause of interruption PhabricatorCauseOfInterruption causeOfInterruption = new PhabricatorCauseOfInterruption(build.getUrl()); Run upstreamRun = getUpstreamRun(build); // Get the running builds that were scheduled before the current one RunList<AbstractBuild> runningBuilds = (RunList<AbstractBuild>) build.getProject().getBuilds(); for (AbstractBuild runningBuild : runningBuilds) { Executor executor = runningBuild.getExecutor(); Run runningBuildUpstreamRun = getUpstreamRun(runningBuild); // Ignore builds that were triggered by the same upstream build // Find builds triggered with the same ABORT_ON_REVISION_ID_FIELD if (runningBuild.isBuilding() && runningBuild.number < build.number && abortOnRevisionId.equals(getAbortOnRevisionId(runningBuild)) && (upstreamRun == null || runningBuildUpstreamRun == null || !upstreamRun.equals(runningBuildUpstreamRun)) && executor != null) { // Abort the builds executor.interrupt(Result.ABORTED, causeOfInterruption); } } } }
Example 3
Source File: LockStepHardKillTest.java From lockable-resources-plugin with MIT License | 5 votes |
private void interruptTermKill(WorkflowRun b) throws Exception { if (b != null) { Executor ex = b.getExecutor(); assertNotNull(ex); ex.interrupt(); j.waitForCompletion(b); j.assertBuildStatus(Result.ABORTED, b); } }
Example 4
Source File: EC2FleetAutoResubmitComputerLauncher.java From ec2-spot-jenkins-plugin with Apache License 2.0 | 4 votes |
/** * {@link ComputerLauncher#afterDisconnect(SlaveComputer, TaskListener)} * <p> * EC2 Fleet plugin overrides this method to detect jobs which were failed because of * EC2 instance was terminated/stopped. It could be manual stop or because of Spot marked. * In all cases as soon as job aborted because of broken connection and slave is offline * it will try to resubmit aborted job back to the queue, so user doesn't need to do that manually * and another slave could take it. * <p> * Implementation details * <p> * There is no official recommendation about way how to resubmit job according to * https://issues.jenkins-ci.org/browse/JENKINS-49707 moreover some of Jenkins code says it impossible. * <p> * method checks {@link SlaveComputer#getOfflineCause()} for disconnect because of EC2 instance termination * it returns * <code> * result = {OfflineCause$ChannelTermination@13708} "Connection was broken: java.io.IOException: * Unexpected termination of the channel\n\tat hudson.remoting.SynchronousCommandTransport$ReaderThread... * cause = {IOException@13721} "java.io.IOException: Unexpected termination of the channel" * timestamp = 1561067177837 * </code> * * @param computer computer * @param listener listener */ @Override public void afterDisconnect(final SlaveComputer computer, final TaskListener listener) { // according to jenkins docs could be null in edge cases, check ComputerLauncher.afterDisconnect if (computer == null) return; // in some multi-thread edge cases cloud could be null for some time, just be ok with that final EC2FleetCloud cloud = ((EC2FleetNodeComputer) computer).getCloud(); if (cloud == null) { LOGGER.warning("Edge case cloud is null for computer " + computer.getDisplayName() + " should be autofixed in a few minutes, if no please create issue for plugin"); return; } final boolean unexpectedDisconnect = computer.isOffline() && computer.getOfflineCause() instanceof OfflineCause.ChannelTermination; if (!cloud.isDisableTaskResubmit() && unexpectedDisconnect) { final List<Executor> executors = computer.getExecutors(); LOGGER.log(LOG_LEVEL, "Unexpected " + computer.getDisplayName() + " termination, resubmit"); for (Executor executor : executors) { if (executor.getCurrentExecutable() != null) { executor.interrupt(Result.ABORTED, new EC2TerminationCause(computer.getDisplayName())); final Queue.Executable executable = executor.getCurrentExecutable(); // if executor is not idle if (executable != null) { final SubTask subTask = executable.getParent(); final Queue.Task task = subTask.getOwnerTask(); List<Action> actions = new ArrayList<>(); if (executable instanceof Actionable) { actions = ((Actionable) executable).getActions(); } Queue.getInstance().schedule2(task, RESCHEDULE_QUIET_PERIOD_SEC, actions); LOGGER.log(LOG_LEVEL, "Unexpected " + computer.getDisplayName() + " termination, resubmit " + task + " with actions " + actions); } } } LOGGER.log(LOG_LEVEL, "Unexpected " + computer.getDisplayName() + " termination, resubmit finished"); } else { LOGGER.log(LOG_LEVEL, "Unexpected " + computer.getDisplayName() + " termination but resubmit disabled, no actions, disableTaskResubmit: " + cloud.isDisableTaskResubmit() + ", offline: " + computer.isOffline() + ", offlineCause: " + (computer.getOfflineCause() != null ? computer.getOfflineCause().getClass() : "null")); } // call parent super.afterDisconnect(computer, listener); }
Example 5
Source File: JobRunnerForCause.java From github-integration-plugin with MIT License | 4 votes |
public synchronized int abortRunning(int number) throws IllegalAccessException { int aborted = 0; Computer[] computers = getJenkinsInstance().getComputers(); for (Computer computer : computers) { if (isNull(computer)) { continue; } List<Executor> executors = computer.getExecutors(); executors.addAll(computer.getOneOffExecutors()); for (Executor executor : executors) { if (isNull(executor) || !executor.isBusy() || nonNull(executor.getCauseOfDeath()) || !getInterruptCauses(executor).isEmpty() || getInterruptStatus(executor) == Result.ABORTED) { continue; } Queue.Executable executable = executor.getCurrentExecutable(); final SubTask parent = executable.getParent(); if (!(executable instanceof Run)) { continue; } final Run executableRun = (Run) executable; if (!(parent instanceof Job)) { continue; } final Job parentJob = (Job) parent; if (!parentJob.getFullName().equals(job.getFullName())) { // name doesn't match continue; } if (executableRun.getResult() == Result.ABORTED) { // was already aborted continue; } if (executableRun instanceof MatrixRun) { // the whole MatrixBuild will be aborted continue; } // if (executable instanceof MatrixBuild) { // final MatrixBuild executable1 = (MatrixBuild) executable; // executable1.doStop() // } final GitHubPRCause causeAction = (GitHubPRCause) executableRun.getCause(GitHubPRCause.class); if (nonNull(causeAction) && causeAction.getNumber() == number) { LOGGER.info("Aborting '{}', by interrupting '{}'", executableRun, executor); executor.interrupt(Result.ABORTED, new NewPRInterruptCause()); aborted++; } } } return aborted; }