Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
mvn verify
load factor to be configured at the command line (#…
…3852) Currently, if you run `mvn verify` you get the moral equivalent of `make -j$(nproc)`; this isn't always desirable in CI where we might want a smaller load factor to reduce contention on a machine. This PR allows you to pass an option: ``` mvn verify -DcoreFactor=FACTOR ``` to set the number of cores used to the nearest positive integer to `$(nproc) / FACTOR`. Co-authored-by: rv-jenkins <[email protected]>
- Loading branch information