Branch: refs/heads/master
Home: https://github.com/jenkinsci/job-config-history-plugin
Commit: b75c5afe2a6a544f8e3882b346bc961b51175c07
https://github.com/jenkinsci/job-config-history-plugin/commit/b75c5afe2a6a544f8e3882b346bc961b51175c07
Author: Mark Waite <[email protected]>
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 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: f4b46c7cbc8c5a299766d6395bf2a4bda22f0aa5
https://github.com/jenkinsci/job-config-history-plugin/commit/f4b46c7cbc8c5a299766d6395bf2a4bda22f0aa5
Author: Mark Waite <[email protected]>
Date: 2024-08-15 (Thu, 15 Aug 2024)
Changed paths:
M .github/workflows/jenkins-security-scan.yml
M .mvn/extensions.xml
M Jenkinsfile
M pom.xml
Log Message:
-----------
Merge branch 'master' into move-forkCount-to-Jenkinsfile
Commit: 8f2448483000d1628c7484886e4fdf5e3b98920a
https://github.com/jenkinsci/job-config-history-plugin/commit/8f2448483000d1628c7484886e4fdf5e3b98920a
Author: Stefan Spieker <[email protected]>
Date: 2024-09-07 (Sat, 07 Sep 2024)
Changed paths:
M Jenkinsfile
M pom.xml
Log Message:
-----------
Merge pull request #312 from MarkEWaite/move-forkCount-to-Jenkinsfile
Allow developer control of parallel testing
Compare:
https://github.com/jenkinsci/job-config-history-plugin/compare/9ff240868a50...8f2448483000
To unsubscribe from these emails, change your notification settings at
https://github.com/jenkinsci/job-config-history-plugin/settings/notifications
--
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/job-config-history-plugin/push/refs/heads/master/9ff240-8f2448%40github.com.