Skip to content

Commit

Permalink
Allow developer control of parallel testing (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite authored Sep 13, 2023
1 parent 3541e12 commit 0d376e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
buildPlugin(useContainerAgent: true, configurations: [
buildPlugin(useContainerAgent: true, forkCount: '1C', configurations: [
[ platform: 'linux', jdk: '11' ],
[ platform: 'linux', jdk: '17' ]
])
9 changes: 0 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,6 @@
<excludes>com/microsoftopentechnologies/windowsazurestorage/Messages.java</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>1C</forkCount>
<parallel>all</parallel>
<useUnlimitedThreads>true</useUnlimitedThreads>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0d376e9

Please sign in to comment.