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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 632943ea84  [ISSUE #8596] Remove redundant mvn test and log check 
steps from CI workflow
632943ea84 is described below

commit 632943ea843eaf43144a008dc28fc013b80aba90
Author: 小陈 <[email protected]>
AuthorDate: Wed Sep 4 14:55:52 2024 +0800

     [ISSUE #8596] Remove redundant mvn test and log check steps from CI 
workflow
---
 .github/workflows/bazel.yml  |  1 +
 .github/workflows/maven.yaml | 10 +---------
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml
index 268a06a79f..5aa4f460c7 100644
--- a/.github/workflows/bazel.yml
+++ b/.github/workflows/bazel.yml
@@ -27,6 +27,7 @@ jobs:
       - name: Retry if failed
         # if it failed , retry 2 times at most
         if: failure() && fromJSON(github.run_attempt) < 3
+        continue-on-error: true
         env:
           GH_REPO: ${{ github.repository }}
           GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 7d74c832be..f17c20b1ab 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -30,9 +30,6 @@ jobs:
       - name: Build with Maven
         run: mvn -B package --file pom.xml
 
-      - name: Run tests with increased memory and debug info
-        run: mvn test -X -Dparallel=none -DargLine="-Xmx1024m 
-XX:MaxPermSize=256m"
-
       - name: Upload Auth JVM crash logs
         if: failure()
         uses: actions/upload-artifact@v4
@@ -41,12 +38,6 @@ jobs:
           path: /Users/runner/work/rocketmq/rocketmq/auth/hs_err_pid*.log
           retention-days: 1
 
-      - name: Check for broker JVM crash logs
-        if: failure()
-        run: |
-          echo "Checking for JVM crash logs..."
-          ls -al /Users/runner/work/rocketmq/rocketmq/broker/
-
       - name: Upload broker JVM crash logs
         if: failure()
         uses: actions/upload-artifact@v4
@@ -58,6 +49,7 @@ jobs:
       - name: Retry if failed
         # if it failed , retry 2 times at most
         if: failure() && fromJSON(github.run_attempt) < 3
+        continue-on-error: true
         env:
           GH_REPO: ${{ github.repository }}
           GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Reply via email to