Skip to content

Commit

Permalink
Suppress in Windows CI for now, since I cannot reproduce locally, and…
Browse files Browse the repository at this point in the history
… it seems to be triggered by the switch to VMs from ACI, meaning that it is platform-dependent
  • Loading branch information
jglick committed Jan 14, 2025
1 parent 252368c commit 6ce8e85
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import hudson.AbortException;
import hudson.Extension;
import hudson.ExtensionList;
import hudson.Functions;
import hudson.XmlFile;
import hudson.model.*;
import hudson.model.listeners.RunListener;
Expand Down Expand Up @@ -98,6 +99,7 @@
import org.jenkinsci.plugins.workflow.job.properties.DisableConcurrentBuildsJobProperty;
import org.jenkinsci.plugins.workflow.support.actions.EnvironmentAction;
import org.jenkinsci.plugins.workflow.test.steps.SemaphoreStep;
import static org.junit.Assume.assumeFalse;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Rule;
Expand Down Expand Up @@ -696,6 +698,7 @@ public void onInitialize(Run run) {

@Issue("JENKINS-73835")
@Test public void logRotationOnlyProcessesCompletedBuilds() throws Throwable {
assumeFalse("TODO #502: failing in VMs", Functions.isWindows() && "true".equals(System.getenv("CI")));

Check warning on line 701 in src/test/java/org/jenkinsci/plugins/workflow/job/WorkflowRunTest.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: #502: failing in VMs", Functions.isWindows() && "true".equals(System.getenv("CI")));
logging.record(LogRotator.class, Level.FINER);
var p = r.createProject(WorkflowJob.class);
p.setDefinition(new CpsFlowDefinition(
Expand Down

0 comments on commit 6ce8e85

Please sign in to comment.