This is an automated email from the ASF dual-hosted git repository.
sabbey37 pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new b0a2d32 GEODE-8561: Add support to PR pipeline for running Windows
checks (#5574)
b0a2d32 is described below
commit b0a2d3269460c41243f8ee742362ec669d4fb9c7
Author: Owen Nichols <[email protected]>
AuthorDate: Wed Sep 30 10:19:53 2020 -0700
GEODE-8561: Add support to PR pipeline for running Windows checks (#5574)
---
ci/pipelines/pull-request/jinja.template.yml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/ci/pipelines/pull-request/jinja.template.yml
b/ci/pipelines/pull-request/jinja.template.yml
index c3f8e8d..01034cc 100644
--- a/ci/pipelines/pull-request/jinja.template.yml
+++ b/ci/pipelines/pull-request/jinja.template.yml
@@ -270,6 +270,7 @@ jobs:
- get: geode
{%- else %}
- get: geode-windows
+ resource: geode
{%- endif %}
trigger: true
version: every
@@ -337,10 +338,16 @@ jobs:
ARTIFACT_SLUG: {{test.ARTIFACT_SLUG}}
JAVA_BUILD_VERSION: {{ java_build_version.version }}
JAVA_TEST_VERSION: {{ java_test_version.version }}
+ {%- if test.CALL_STACK_TIMEOUT %}
CALL_STACK_TIMEOUT: {{test.CALL_STACK_TIMEOUT}}
+ {%- endif %}
DUNIT_PARALLEL_FORKS: {{test.DUNIT_PARALLEL_FORKS}}
GRADLE_TASK: {{test.GRADLE_TASK}}
+ {%- if test.GRADLE_TASK_OPTIONS %}
+ GRADLE_TASK_OPTIONS: {{test.GRADLE_TASK_OPTIONS}}
+ {%- else %}
GRADLE_TASK_OPTIONS: ""
+ {%- endif %}
MAINTENANCE_VERSION: {{repository.branch}}
PARALLEL_DUNIT: {{test.PARALLEL_DUNIT}}
{% if test.PARALLEL_GRADLE is defined %}