-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI job for testing more job parallelism
- Loading branch information
1 parent
feb0024
commit 343637d
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
- job: | ||
name: "elastic+elasticsearch+pull-request+par-3" | ||
display-name: "elastic / elasticsearch - pull request part 3" | ||
description: "Testing of Elasticsearch pull requests - part 3" | ||
workspace: "/dev/shm/elastic+elasticsearch+pull-request+part-3" | ||
scm: | ||
- git: | ||
refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*" | ||
branches: | ||
- "${ghprbActualCommit}" | ||
triggers: | ||
- github-pull-request: | ||
org-list: | ||
- elastic | ||
allow-whitelist-orgs-as-admins: true | ||
trigger-phrase: '.*run\W+elasticsearch-ci/part-3.*' | ||
github-hooks: true | ||
status-context: elasticsearch-ci/part-3 | ||
cancel-builds-on-update: true | ||
white-list-labels: | ||
- 'test-part-3' | ||
builders: | ||
- inject: | ||
properties-file: '.ci/java-versions.properties' | ||
properties-content: | | ||
JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA | ||
RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA | ||
JAVA8_HOME=$HOME/.java/java8 | ||
JAVA11_HOME=$HOME/.java/java11 | ||
- shell: | | ||
#!/usr/local/bin/runbld --redirect-stderr | ||
$WORKSPACE/.ci/scripts/run-gradle.sh -Dignore.tests.seed checkPart3 |