From commits-return-31618-archive-asf-public=cust-asf.ponee.io@geode.apache.org Mon May 6 17:21:03 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4D37A180763 for ; Mon, 6 May 2019 19:21:03 +0200 (CEST) Received: (qmail 17549 invoked by uid 500); 6 May 2019 17:21:02 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 17494 invoked by uid 99); 6 May 2019 17:21:02 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 May 2019 17:21:02 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E18A087263; Mon, 6 May 2019 17:20:56 +0000 (UTC) Date: Mon, 06 May 2019 17:20:55 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: add retry macro to all create-instance locations MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155716325424.7584.17595173415673352519@gitbox.apache.org> From: rhoughton@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: 117a27d2c6ff134c3ca0a8c18d0e1312e810a44f X-Git-Newrev: f1df27bc45dcff604eae25d8827b1d7d2eb5838a X-Git-Rev: f1df27bc45dcff604eae25d8827b1d7d2eb5838a X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 The following commit(s) were added to refs/heads/develop by this push: new f1df27b add retry macro to all create-instance locations f1df27b is described below commit f1df27bc45dcff604eae25d8827b1d7d2eb5838a Author: Robert Houghton AuthorDate: Mon May 6 10:15:07 2019 -0700 add retry macro to all create-instance locations --- ci/pipelines/examples/jinja.template.yml | 6 ++++++ ci/pipelines/geode-build/jinja.template.yml | 10 ++++++++++ ci/pipelines/pull-request/jinja.template.yml | 5 +++++ 3 files changed, 21 insertions(+) diff --git a/ci/pipelines/examples/jinja.template.yml b/ci/pipelines/examples/jinja.template.yml index 3e70e61..dabbdff 100644 --- a/ci/pipelines/examples/jinja.template.yml +++ b/ci/pipelines/examples/jinja.template.yml @@ -17,6 +17,7 @@ {% from 'shared_jinja.yml' import alpine_tools_config with context %} {% from 'shared_jinja.yml' import github_access with context %} +{% from 'shared_jinja.yml' import init_retry with context %} {% macro common_instance_params(test) -%} GCP_PROJECT: ((gcp-project)) @@ -84,6 +85,7 @@ jobs: trigger: true - do: - put: concourse-metadata-resource + {{ init_retry()|indent(6) }} - task: create_instance {{ alpine_tools_config()|indent(8) }} params: @@ -95,8 +97,12 @@ jobs: inputs: - name: concourse-metadata-resource - name: geode-ci + - name: attempts-log + path: old outputs: - name: instance-data + - name: attempts-log + path: new timeout: 15m attempts: 10 - task: rsync_code_up diff --git a/ci/pipelines/geode-build/jinja.template.yml b/ci/pipelines/geode-build/jinja.template.yml index c5f16b5..40d4bee 100644 --- a/ci/pipelines/geode-build/jinja.template.yml +++ b/ci/pipelines/geode-build/jinja.template.yml @@ -421,6 +421,7 @@ jobs: {{ all_gating_jobs() | indent(6) }} - do: - put: concourse-metadata-resource + {{ init_retry()|indent(6) }} - task: create_instance {{- alpine_tools_config()|indent(8) }} params: @@ -433,8 +434,12 @@ jobs: inputs: - name: concourse-metadata-resource - name: geode-ci + - name: attempts-log + path: old outputs: - name: instance-data + - name: attempts-log + path: new timeout: 15m attempts: 10 - task: rsync_code_up @@ -490,6 +495,7 @@ jobs: - put: concourse-metadata-resource - aggregate: - do: + {{ init_retry()|indent(8) }} - task: create_instance-{{java_test_version.name}} {{- alpine_tools_config()|indent(10) }} params: @@ -503,9 +509,13 @@ jobs: inputs: - name: concourse-metadata-resource - name: geode-ci + - name: attempts-log + path: old outputs: - name: instance-data-{{java_test_version.name}} path: instance-data + - name: attempts-log + path: new timeout: 15m attempts: 10 - task: rsync_code_up-{{java_test_version.name}} diff --git a/ci/pipelines/pull-request/jinja.template.yml b/ci/pipelines/pull-request/jinja.template.yml index 1d2e50e..d7d9d4a 100644 --- a/ci/pipelines/pull-request/jinja.template.yml +++ b/ci/pipelines/pull-request/jinja.template.yml @@ -229,6 +229,7 @@ jobs: get_params: {skip_download: true} - do: - put: concourse-metadata-resource + {{ init_retry()|indent(8) }} - task: create_instance-{{java_test_version.name}} {{- alpine_tools_config()|indent(10) }} params: @@ -245,8 +246,12 @@ jobs: - name: concourse-metadata-resource - name: geode - name: geode-ci + - name: attempts-log + path: old outputs: - name: instance-data + - name: attempts-log + path: new timeout: 15m attempts: 100 - task: rsync_code_up-{{java_test_version.name}}