Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/role-strategy-plugin
  Commit: 51caeff946c0ea6dc0c09596e3eab8f88efc1370
      
https://github.com/jenkinsci/role-strategy-plugin/commit/51caeff946c0ea6dc0c09596e3eab8f88efc1370
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2023-09-12 (Tue, 12 Sep 2023)

  Changed paths:
    M Jenkinsfile
    M pom.xml

  Log Message:
  -----------
  Allow developer control of parallel testing

Move the definition of parallel testing from the Maven pom file into
the Jenkinsfile so that ci.jenkins.io continues to run the tests with
three processes per four available cores, while developers are allowed
to configure the amount of parallel testing based on the configuration
and use of their computer.

Developers can adjust parallel execution by passing a command line
argument to Maven like this:

  mvn clean -DforkCount=1C verify

Developers can define a Maven profile that sets the forkCount in their
~/.m2/settings.xml like this:

  <profile>
    <id>faster</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    <properties>
      <forkCount>.75C</forkCount>
    </properties>
  </profile>

With that entry in the settings.xml file, then .75C will be used for:

  mvn clean verify


  Commit: c7be15968f5a17fb484249dd99eb053c840642d6
      
https://github.com/jenkinsci/role-strategy-plugin/commit/c7be15968f5a17fb484249dd99eb053c840642d6
  Author: Markus Winter <m.win...@sap.com>
  Date:   2023-09-13 (Wed, 13 Sep 2023)

  Changed paths:
    M Jenkinsfile
    M pom.xml

  Log Message:
  -----------
  Allow developer control of parallel testing (#336)


Compare: 
https://github.com/jenkinsci/role-strategy-plugin/compare/731678c3e0eb...c7be15968f5a

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/role-strategy-plugin/push/refs/heads/master/731678-c7be15%40github.com.

Reply via email to