You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2019/05/17 23:12:56 UTC

[geode] branch develop updated: make windows tests gating (#3597)

This is an automated email from the ASF dual-hosted git repository.

onichols 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 b647699  make windows tests gating (#3597)
b647699 is described below

commit b647699a89fa799724613e2ac7d5b6f4d362d917
Author: Owen Nichols <34...@users.noreply.github.com>
AuthorDate: Fri May 17 16:12:44 2019 -0700

    make windows tests gating (#3597)
    
    and run Windows tests concurrently with Linux tests
---
 ci/pipelines/geode-build/jinja.template.yml | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/ci/pipelines/geode-build/jinja.template.yml b/ci/pipelines/geode-build/jinja.template.yml
index 7b03dc4..b0d881d 100644
--- a/ci/pipelines/geode-build/jinja.template.yml
+++ b/ci/pipelines/geode-build/jinja.template.yml
@@ -28,18 +28,10 @@
   - get: geode
     trigger: true
     passed:
-    {%- if test.name.startswith("Windows") %}
-    {{- all_gating_jobs() | indent(4) -}}
-    {% else %}
     - Build
-    {%- endif %}
   - get: geode-build-version
     passed:
-    {%- if test.name.startswith("Windows") %}
-    {{- all_gating_jobs() | indent(4) -}}
-    {% else %}
     - Build
-    {%- endif %}
 {% endmacro %}
 
 {%- macro deep_merge(a, b): %}
@@ -90,7 +82,7 @@ GRADLE_GLOBAL_ARGS: ((gradle-global-args))
 {%- endmacro %}
 
 {% macro all_gating_jobs() %}
-{%- for test in (tests) if not test.name=="StressNew" and not test.name.startswith("Windows") -%}
+{%- for test in (tests) if not test.name=="StressNew" -%}
   {%- for java_test_version in (java_test_versions) %}
 - {{test.name}}Test{{java_test_version.name}}
   {%- endfor -%}