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

onichols pushed a commit to branch support/1.13
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.13 by this push:
     new ecd6976  GEODE-8347: use same benchmarks branch as geode branch, since 
that's the way we release (#5361)
ecd6976 is described below

commit ecd697625bb799d82dc41158d51baa73ede97bf8
Author: Owen Nichols <[email protected]>
AuthorDate: Thu Jul 9 14:57:12 2020 -0700

    GEODE-8347: use same benchmarks branch as geode branch, since that's the 
way we release (#5361)
    
    also balance max_in_flight according to how long each job takes
    
    (cherry picked from commit daa70d729b98f8edc3791a0dfccbf102ab94dd94)
---
 ci/pipelines/geode-build/jinja.template.yml | 2 +-
 ci/pipelines/shared/jinja.variables.yml     | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/ci/pipelines/geode-build/jinja.template.yml 
b/ci/pipelines/geode-build/jinja.template.yml
index bcd39c7..7348de9 100644
--- a/ci/pipelines/geode-build/jinja.template.yml
+++ b/ci/pipelines/geode-build/jinja.template.yml
@@ -448,7 +448,7 @@ jobs:
 {% for run_var in (benchmarks.flavors) %}
 - name: Benchmark{{ run_var.title }}
   public: true
-  max_in_flight: 2
+  max_in_flight: {{ run_var.max_in_flight }}
   plan:
   - get: geode-ci
     passed: &benchmark-inputs
diff --git a/ci/pipelines/shared/jinja.variables.yml 
b/ci/pipelines/shared/jinja.variables.yml
index 2680497..a99bf23 100644
--- a/ci/pipelines/shared/jinja.variables.yml
+++ b/ci/pipelines/shared/jinja.variables.yml
@@ -18,17 +18,20 @@
 benchmarks:
   baseline_branch: ''
   baseline_version: '1.12.0'
-  benchmark_branch: develop
+  benchmark_branch: ((geode-build-branch))
   flavors:
   - title: '_base'
     flag: ''
     options: ''
+    max_in_flight: 4
   - title: '_with_ssl'
     flag: '-PwithSsl -PtestJVM=/usr/lib/jvm/java-11-openjdk-amd64/'
     options: '--tests=*GetBenchmark --tests=*PutBenchmark'
+    max_in_flight: 1
   - title: '_with_security_manager'
     flag: '-PwithSecurityManager'
     options: '--tests=Partitioned*'
+    max_in_flight: 2
 
 build_test:
   ARTIFACT_SLUG: build

Reply via email to