You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2021/05/01 01:38:44 UTC

[iotdb] branch ci_maven_timeout_0.12 created (now 8764f03)

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

hxd pushed a change to branch ci_maven_timeout_0.12
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at 8764f03  add maven http parameter to avoid maven downloading dependencies timeout in github actions

This branch includes the following new commits:

     new 8764f03  add maven http parameter to avoid maven downloading dependencies timeout in github actions

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: add maven http parameter to avoid maven downloading dependencies timeout in github actions

Posted by hx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch ci_maven_timeout_0.12
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 8764f0316cb3a278ca9b5d62ddabea7d7e58f8b9
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Sat May 1 00:00:06 2021 +0800

    add maven http parameter to avoid maven downloading dependencies timeout in github actions
---
 .github/workflows/client-go.yml       | 3 +++
 .github/workflows/client.yml          | 3 +++
 .github/workflows/e2e.yml             | 3 +++
 .github/workflows/main-unix.yml       | 3 +++
 .github/workflows/main-win.yml        | 3 +++
 .github/workflows/sonar-coveralls.yml | 3 +++
 6 files changed, 18 insertions(+)

diff --git a/.github/workflows/client-go.yml b/.github/workflows/client-go.yml
index f315048..66f6e5e 100644
--- a/.github/workflows/client-go.yml
+++ b/.github/workflows/client-go.yml
@@ -18,6 +18,9 @@ on:
   # allow manually run the action:
   workflow_dispatch:
 
+env:
+  MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
+
 jobs:
   unix:
     strategy:
diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml
index 492bf0a..b91a219 100644
--- a/.github/workflows/client.yml
+++ b/.github/workflows/client.yml
@@ -27,6 +27,9 @@ on:
   # allow manually run the action:
   workflow_dispatch:
 
+env:
+  MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
+
 jobs:
   build:
     strategy:
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 6a0e21f..5b39675 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -21,6 +21,9 @@ on:
   # allow manually run the action:
   workflow_dispatch:
 
+env:
+  MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
+
 jobs:
   E2E:
     runs-on: ubuntu-latest
diff --git a/.github/workflows/main-unix.yml b/.github/workflows/main-unix.yml
index 15aa14e..b243cda 100644
--- a/.github/workflows/main-unix.yml
+++ b/.github/workflows/main-unix.yml
@@ -20,6 +20,9 @@ on:
   # allow manually run the action:
   workflow_dispatch:
 
+env:
+  MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
+
 jobs:
   unix:
     strategy:
diff --git a/.github/workflows/main-win.yml b/.github/workflows/main-win.yml
index 785bb32..69c1b5d 100644
--- a/.github/workflows/main-win.yml
+++ b/.github/workflows/main-win.yml
@@ -20,6 +20,9 @@ on:
   # allow manually run the action:
   workflow_dispatch:
 
+env:
+  MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
+
 jobs:
   win:
     strategy:
diff --git a/.github/workflows/sonar-coveralls.yml b/.github/workflows/sonar-coveralls.yml
index 48a3fbb..7f1dcdc 100644
--- a/.github/workflows/sonar-coveralls.yml
+++ b/.github/workflows/sonar-coveralls.yml
@@ -20,6 +20,9 @@ on:
   # allow manually run the action:
   workflow_dispatch:
 
+env:
+  MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
+
 jobs:
   ubuntu:
     runs-on: ubuntu-latest