You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by rh...@apache.org on 2019/07/17 18:26:32 UTC

[geode] 01/02: Parameterize initial version to reduce possible errors.

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

rhoughton pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 4c0501c01b27441b53242a9dd8fd2dced23ce2f5
Author: Robert Houghton <rh...@pivotal.io>
AuthorDate: Wed Jul 17 10:38:25 2019 -0700

    Parameterize initial version to reduce possible errors.
    
    Co-authored-by: Sean Goller <sg...@pivotal.io>
    Co-authored-by: Bala Kaza Venkata <bk...@pivotal.io>
---
 ci/pipelines/geode-build/jinja.template.yml | 4 ++--
 ci/pipelines/shared/jinja.variables.yml     | 2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/ci/pipelines/geode-build/jinja.template.yml b/ci/pipelines/geode-build/jinja.template.yml
index bfd68d8..4dbdd2a 100644
--- a/ci/pipelines/geode-build/jinja.template.yml
+++ b/ci/pipelines/geode-build/jinja.template.yml
@@ -180,7 +180,7 @@ resources:
   source:
     bucket: ((version-bucket))
     driver: gcs
-    initial_version: 1.10.0
+    initial_version: {{ metadata.initial_version }}
     json_key: ((!concourse-gcp-key))
     key: ((pipeline-prefix))((geode-build-branch))/version
 - name: geode-passing-version
@@ -188,7 +188,7 @@ resources:
   source:
     bucket: ((version-bucket))
     driver: gcs
-    initial_version: 1.10.0
+    initial_version: {{ metadata.initial_version }}
     json_key: ((!concourse-gcp-key))
     key: ((pipeline-prefix))((geode-build-branch))/passing-version
 {% if repository.sanitized_fork == "apache" or repository.branch == "develop" -%}
diff --git a/ci/pipelines/shared/jinja.variables.yml b/ci/pipelines/shared/jinja.variables.yml
index 84b3d76..4bf4af0 100644
--- a/ci/pipelines/shared/jinja.variables.yml
+++ b/ci/pipelines/shared/jinja.variables.yml
@@ -18,6 +18,8 @@
 repository:
   project: geode
 
+metadata:
+  initial_version: 1.10.0
 build_test:
   name: "Build"
   CPUS: "8"