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 03:53:14 UTC

[iotdb] branch rel/0.12 updated: [GITHUB-3121] add maven http parameter to avoid maven downloading dependencies timeout in github actions (#3123)

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

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


The following commit(s) were added to refs/heads/rel/0.12 by this push:
     new d2735a2  [GITHUB-3121] add maven http parameter to avoid maven downloading dependencies timeout in github actions (#3123)
d2735a2 is described below

commit d2735a22fe46037bff46a39df67cf0e3aa44b443
Author: Xiangdong Huang <hx...@apache.org>
AuthorDate: Sat May 1 11:52:32 2021 +0800

    [GITHUB-3121] add maven http parameter to avoid maven downloading dependencies timeout in github actions (#3123)
---
 .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