Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[openj9-dev] Proposal for changes to the existing pull request triggers

Please note that triggers for pull request compilation and test are changing, or at least this is the proposal for change.
 
The primary reason driving this proposal is for more targeted compilation/testing in pull requests which in turn will free more machine resources for other pull request testing and/or daily builds.  As new releases and platforms are added, the existing machine resources are often laboring to keep up to the workload.
 
The current permitted use, is that `all` is accepted for platforms, test levels and release arguments.  The proposal is that `all` will only be valid for platforms.  Only a specific release, e.g. one of JDK8,JDK10,JDK11,JDKN; or one or more comma separated releases, e.g. JDK8,JDK11; would be accepted.  Only specific test levels would be valid, e.g. sanity or extended.
 
A commonly used example, `jenkins compile all all` for example will need to be entered as `jenkins compile all jdk8,jdk10,jdk11`.  Another commonly used example, `jenkins test all all all` would become `jenkins test sanity,extended all jdk8,jdk10,jdk11`
 
Documentation will be updated via https://github.com/eclipse/openj9/issues/2539, comment/concerns can be posted to this issue or reply to the email thread.


Back to the top