You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ad...@apache.org on 2023/06/12 10:09:50 UTC

[fineract] branch develop updated: FINERACT-1724: Remove auto retry (due to bug)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 062675e76 FINERACT-1724: Remove auto retry (due to bug)
062675e76 is described below

commit 062675e76f2786e02785a25a2f552cc78c5ac56d
Author: Adam Saghy <ad...@gmail.com>
AuthorDate: Mon Jun 12 10:35:42 2023 +0200

    FINERACT-1724: Remove auto retry (due to bug)
---
 .github/workflows/build-mariadb.yml    | 7 +------
 .github/workflows/build-mysql.yml      | 7 +------
 .github/workflows/build-postgresql.yml | 7 +------
 3 files changed, 3 insertions(+), 18 deletions(-)

diff --git a/.github/workflows/build-mariadb.yml b/.github/workflows/build-mariadb.yml
index ef60adb1c..eb6a548eb 100644
--- a/.github/workflows/build-mariadb.yml
+++ b/.github/workflows/build-mariadb.yml
@@ -79,7 +79,6 @@ jobs:
             sudo apt-get install ghostscript graphviz -y
 
       - name: Build & Test
-        uses: nick-fields/retry@v2
         env:
           AWS_ENDPOINT_URL: http://localhost:4566
           AWS_ACCESS_KEY_ID: localstack
@@ -87,11 +86,7 @@ jobs:
           AWS_REGION: us-east-1
           FINERACT_REPORT_EXPORT_S3_ENABLED: true
           FINERACT_REPORT_EXPORT_S3_BUCKET_NAME: fineract-reports
-        with:
-          timeout_minutes: 90
-          max_attempts: 3
-          retry_on: error
-          command: |
+        run: |
             ./gradlew --no-daemon --console=plain build test -x doc -x :twofactor-tests:test -x :oauth2-test:test
             ./gradlew --no-daemon --console=plain :twofactor-tests:test
             ./gradlew --no-daemon --console=plain :oauth2-tests:test
diff --git a/.github/workflows/build-mysql.yml b/.github/workflows/build-mysql.yml
index 53047f44a..d5ca57bc7 100644
--- a/.github/workflows/build-mysql.yml
+++ b/.github/workflows/build-mysql.yml
@@ -79,7 +79,6 @@ jobs:
             sudo apt-get install ghostscript graphviz -y
 
       - name: Build & Test
-        uses: nick-fields/retry@v2
         env:
           AWS_ENDPOINT_URL: http://localhost:4566
           AWS_ACCESS_KEY_ID: localstack
@@ -87,11 +86,7 @@ jobs:
           AWS_REGION: us-east-1
           FINERACT_REPORT_EXPORT_S3_ENABLED: true
           FINERACT_REPORT_EXPORT_S3_BUCKET_NAME: fineract-reports
-        with:
-          timeout_minutes: 90
-          max_attempts: 3
-          retry_on: error
-          command: |
+        run: |
             ./gradlew --no-daemon --console=plain build test -x doc -x :twofactor-tests:test -x :oauth2-test:test -PdbType=mysql
             ./gradlew --no-daemon --console=plain :twofactor-tests:test -PdbType=mysql
             ./gradlew --no-daemon --console=plain :oauth2-tests:test -PdbType=mysql
diff --git a/.github/workflows/build-postgresql.yml b/.github/workflows/build-postgresql.yml
index 793435d8e..130a1008a 100644
--- a/.github/workflows/build-postgresql.yml
+++ b/.github/workflows/build-postgresql.yml
@@ -80,7 +80,6 @@ jobs:
             sudo apt-get install ghostscript graphviz -y
 
       - name: Build & Test
-        uses: nick-fields/retry@v2
         env:
           AWS_ENDPOINT_URL: http://localhost:4566
           AWS_ACCESS_KEY_ID: localstack
@@ -88,11 +87,7 @@ jobs:
           AWS_REGION: us-east-1
           FINERACT_REPORT_EXPORT_S3_ENABLED: true
           FINERACT_REPORT_EXPORT_S3_BUCKET_NAME: fineract-reports
-        with:
-          timeout_minutes: 90
-          max_attempts: 3
-          retry_on: error
-          command: |
+        run: |
             ./gradlew --no-daemon --console=plain build test -x doc -x :twofactor-tests:test -x :oauth2-test:test -PdbType=postgresql
             ./gradlew --no-daemon --console=plain :twofactor-tests:test -PdbType=postgresql
             ./gradlew --no-daemon --console=plain :oauth2-tests:test -PdbType=postgresql