Skip to content
Closed
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
<properties>
<revision>2.58</revision>
<changelist>-SNAPSHOT</changelist>
<jenkins.version>2.62</jenkins.version>
<jenkins.version>2.121.1</jenkins.version>
<java.level>8</java.level>
<no-test-jar>false</no-test-jar>
<git-plugin.version>3.1.0</git-plugin.version>
<workflow-support-plugin.version>2.17</workflow-support-plugin.version>
<scm-api-plugin.version>2.0.8</scm-api-plugin.version>
<workflow-support-plugin.version>2.21-rc629.b249afdd9a58</workflow-support-plugin.version>
<scm-api-plugin.version>2.2.6</scm-api-plugin.version>
<groovy-cps.version>1.24</groovy-cps.version>
<structs-plugin.version>1.15</structs-plugin.version>
</properties>
Expand All @@ -82,7 +82,7 @@
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-api</artifactId>
<version>2.27</version>
<version>2.30-rc820.ba604ce51277</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down Expand Up @@ -143,7 +143,7 @@
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<version>2.21</version>
<version>2.26-rc848.9e07b6336b19</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import hudson.model.Slave;
import hudson.model.TaskListener;
import hudson.model.User;
import hudson.slaves.CommandLauncher;
import hudson.slaves.ComputerLauncher;
import hudson.slaves.NodeProperty;
import hudson.slaves.RetentionStrategy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ private WorkflowRun runFuzzerJob(JenkinsRule jrule, String jobName, FlowDurabili
* May fail rarely due to files being copied in a different order than they are modified as part of simulating a dirty restart.
* See {@link RestartableJenkinsRule#simulateAbruptShutdown()} for why that copying happens. */
@Test
@Ignore //Too long to run as part of main suite
//Too long to run as part of main suite
@TimedRepeatRule.RepeatForTime(repeatMillis = 150_000)
public void fuzzTimingDurable() throws Exception {
final String jobName = "NestedParallelDurableJob";
Expand Down Expand Up @@ -895,7 +895,7 @@ public void evaluate() throws Throwable {
* May fail rarely due to files being copied in a different order than they are modified as part of simulating a dirty restart.
* See {@link RestartableJenkinsRule#simulateAbruptShutdown()} for why that copying happens. */
@Test
@Ignore //Too long to run as part of main suite
//Too long to run as part of main suite
@TimedRepeatRule.RepeatForTime(repeatMillis = 150_000)
public void fuzzTimingNonDurableWithDirtyRestart() throws Exception {
final String jobName = "NestedParallelDurableJob";
Expand Down Expand Up @@ -953,7 +953,7 @@ public void evaluate() throws Throwable {

/** Test interrupting build by randomly restarting *cleanly* at unpredictable times and verify we stick pick up and resume. */
@Test
@Ignore //Too long to run as part of main suite
//Too long to run as part of main suite
@TimedRepeatRule.RepeatForTime(repeatMillis = 150_000)
public void fuzzTimingNonDurableWithCleanRestart() throws Exception {

Expand Down