This is an automated email from the ASF dual-hosted git repository.
zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 8d21dba751d rollback mvnd to mvnw (#36947)
8d21dba751d is described below
commit 8d21dba751d7b9e6d08b988be077c680b18bca08
Author: Liang Zhang <[email protected]>
AuthorDate: Mon Oct 27 14:38:40 2025 +0800
rollback mvnd to mvnw (#36947)
---
.github/workflows/e2e-sql.yml | 6 ------
.github/workflows/nightly-e2e-sql.yml | 10 ++--------
2 files changed, 2 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/e2e-sql.yml b/.github/workflows/e2e-sql.yml
index bb135f19041..f122e6fb671 100644
--- a/.github/workflows/e2e-sql.yml
+++ b/.github/workflows/e2e-sql.yml
@@ -62,9 +62,6 @@ jobs:
with:
distribution: 'temurin'
java-version: 11
- - uses: gauthamchandra/[email protected]
- with:
- version: '1.0.3'
- uses: actions/cache@v4
with:
path: ~/.m2/repository
@@ -128,9 +125,6 @@ jobs:
with:
distribution: 'temurin'
java-version: 11
- - uses: gauthamchandra/[email protected]
- with:
- version: '1.0.3'
- name: Download E2E Image
if: matrix.adapter == 'proxy'
uses: actions/download-artifact@v4
diff --git a/.github/workflows/nightly-e2e-sql.yml
b/.github/workflows/nightly-e2e-sql.yml
index a85a7de006c..d7edde33647 100644
--- a/.github/workflows/nightly-e2e-sql.yml
+++ b/.github/workflows/nightly-e2e-sql.yml
@@ -53,11 +53,8 @@ jobs:
restore-keys: |
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX
}}-maven-third-party-e2e-cache-
${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX
}}-maven-third-party-
- - uses: gauthamchandra/[email protected]
- with:
- version: '1.0.3'
- name: Build E2E Image
- run: mvnd -B clean install -am -pl test/e2e/sql -Pe2e.env.docker
-DskipTests -Dspotless.apply.skip=true
+ run: ./mvnw -B clean install -am -pl test/e2e/sql -Pe2e.env.docker
-DskipTests -Dspotless.apply.skip=true
- name: Save E2E Image
run: docker save -o /tmp/${{
needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-proxy-test.tar
apache/shardingsphere-proxy-test:latest
- uses: actions/upload-artifact@v4
@@ -118,9 +115,6 @@ jobs:
with:
distribution: 'temurin'
java-version: 21
- - uses: gauthamchandra/[email protected]
- with:
- version: '1.0.3'
- name: Download E2E Image
if: matrix.adapter == 'proxy'
uses: actions/download-artifact@v4
@@ -131,4 +125,4 @@ jobs:
if: matrix.adapter == 'proxy'
run: docker load -i /tmp/${{
needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-proxy-test.tar
- name: Run E2E Test
- run: mvnd -nsu -B install -f test/e2e/sql/pom.xml
-Dspotless.apply.skip=true -De2e.run.type=DOCKER -De2e.artifact.modes=${{
matrix.mode }} -De2e.artifact.adapters=${{ matrix.adapter }}
-De2e.run.additional.cases=false -De2e.scenarios=${{ matrix.scenario }}
-De2e.artifact.databases=${{ matrix.database }} ${{ matrix.additional-options }}
+ run: ./mvnw -nsu -B install -f test/e2e/sql/pom.xml
-Dspotless.apply.skip=true -De2e.run.type=DOCKER -De2e.artifact.modes=${{
matrix.mode }} -De2e.artifact.adapters=${{ matrix.adapter }}
-De2e.run.additional.cases=false -De2e.scenarios=${{ matrix.scenario }}
-De2e.artifact.databases=${{ matrix.database }} ${{ matrix.additional-options }}