You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by jx...@apache.org on 2023/04/05 03:05:21 UTC

[helix] branch master updated: add step to CI workflows to delete old frontend-maven-plugin artifacts to prevent build issue (#2424)

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

jxue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new bbf8db49f add step to CI workflows to delete old frontend-maven-plugin artifacts to prevent build issue (#2424)
bbf8db49f is described below

commit bbf8db49f00211cc740cee74382f0154e2f3bc8c
Author: helix-bot <11...@users.noreply.github.com>
AuthorDate: Tue Apr 4 20:05:14 2023 -0700

    add step to CI workflows to delete old frontend-maven-plugin artifacts to prevent build issue (#2424)
---
 .github/workflows/Helix-CI.yml        | 2 ++
 .github/workflows/Helix-Manual-CI.yml | 2 ++
 .github/workflows/Helix-PR-CI.yml     | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/.github/workflows/Helix-CI.yml b/.github/workflows/Helix-CI.yml
index 3c6a5d680..6890dda4c 100644
--- a/.github/workflows/Helix-CI.yml
+++ b/.github/workflows/Helix-CI.yml
@@ -16,6 +16,8 @@ jobs:
       uses: actions/setup-java@v1
       with:
         java-version: 11
+    - name: Delete frontend-maven-plugin dir
+      run: rm -rf .m2\repository\com\github\eirslett
     - name: Build with Maven
       run: mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5
     - name: Run All Tests
diff --git a/.github/workflows/Helix-Manual-CI.yml b/.github/workflows/Helix-Manual-CI.yml
index b57ecf3f3..f349e3303 100644
--- a/.github/workflows/Helix-Manual-CI.yml
+++ b/.github/workflows/Helix-Manual-CI.yml
@@ -28,6 +28,8 @@ jobs:
         uses: actions/setup-java@v1
         with:
           java-version: 1.8
+      - name: Delete frontend-maven-plugin dir
+        run: rm -rf .m2\repository\com\github\eirslett
       - name: Build with Maven
         run: mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5
       - name: Run All Tests
diff --git a/.github/workflows/Helix-PR-CI.yml b/.github/workflows/Helix-PR-CI.yml
index 989b4507b..c061c5ecf 100644
--- a/.github/workflows/Helix-PR-CI.yml
+++ b/.github/workflows/Helix-PR-CI.yml
@@ -18,6 +18,8 @@ jobs:
       uses: actions/setup-java@v1
       with:
         java-version: 11
+    - name: Delete frontend-maven-plugin dir
+      run: rm -rf .m2\repository\com\github\eirslett
     - name: Build with Maven
       run: mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5
     - name: Run All Tests