Branch: refs/heads/master
Home: https://github.com/jenkinsci/analysis-model
Commit: 9f58ccea238ffa75d0f7f5f79897c68f51d9a1a4
https://github.com/jenkinsci/analysis-model/commit/9f58ccea238ffa75d0f7f5f79897c68f51d9a1a4
Author: Mark Waite <[email protected]>
Date: 2023-09-12 (Tue, 12 Sep 2023)
Changed paths:
M Jenkinsfile
M SUPPORTED-FORMATS.md
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 one
process per available core, 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>.45C</forkCount>
</properties>
</profile>
With that entry in the settings.xml file, then 0.45C will be used for:
mvn clean verify
Commit: 565bacf88d429a00860e44cf4c8345acd97b5c92
https://github.com/jenkinsci/analysis-model/commit/565bacf88d429a00860e44cf4c8345acd97b5c92
Author: Ullrich Hafner <[email protected]>
Date: 2023-09-13 (Wed, 13 Sep 2023)
Changed paths:
M Jenkinsfile
M SUPPORTED-FORMATS.md
M pom.xml
Log Message:
-----------
Merge pull request #942 from MarkEWaite/move-forkCount-to-Jenkinsfile
Allow developer control of parallel testing
Compare:
https://github.com/jenkinsci/analysis-model/compare/8c3912111ca0...565bacf88d42
--
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 [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/analysis-model/push/refs/heads/master/8c3912-565bac%40github.com.