Jenkinsfile 489 B

1234567891011
  1. /*
  2. * See the documentation for more options:
  3. * https://github.com/jenkins-infra/pipeline-library/
  4. */
  5. buildPlugin(
  6. forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores
  7. useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
  8. configurations: [
  9. [platform: 'linux', jdk: 21],
  10. [platform: 'windows', jdk: 21],
  11. ])