SAP-archive / cloud-s4-sdk-pipeline

The Cloud SDK pipeline uses the Cloud SDK continuous delivery server for building, checking, and deploying extension applications. Projects based on the SAP Cloud SDK archetype will automatically use this pipeline.
Apache License 2.0
65 stars 25 forks source link

Typo in Docu? #18

Closed D-MBLD closed 5 years ago

D-MBLD commented 5 years ago

What does default value 1C in forkCount Parameter of integrationTests mean? (File https://github.com/SAP/cloud-s4-sdk-pipeline/blob/master/configuration.md) Typo?

daniel-kurzynski commented 5 years ago

Thanks for bringing this to our attention, this is not clearly documented on our side.

The forkCount parameter is passed to the surefire test execution.

The meaning of C is explained in the surefire documentation for forkCount:

Option to specify the number of VMs to fork in parallel in order to execute the tests. When terminated with "C", the number part is multiplied with the number of CPU cores. Floating point value are only accepted together with "C". If set to "0", no VM is forked and all tests are executed within the main process.

Source: https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#forkCount

Kind regards