This is an automated email from the ASF dual-hosted git repository. jianglongtao pushed a commit to branch fix-33341 in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
commit 97a34a1d07ae0f65120246860f9e59725e4b4d82 Author: 孙念君 Nianjun Sun <[email protected]> AuthorDate: Thu Sep 5 11:22:28 2024 +0800 Refactor : update the docker image save path --- .github/workflows/nightly-e2e-sql.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly-e2e-sql.yml b/.github/workflows/nightly-e2e-sql.yml index d0369a69c59..4aca9ba26a6 100644 --- a/.github/workflows/nightly-e2e-sql.yml +++ b/.github/workflows/nightly-e2e-sql.yml @@ -54,7 +54,9 @@ jobs: ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party-e2e-cache- ${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-maven-third-party- - name: Build E2E Image - run: ./mvnw -B clean install -am -pl test/e2e/sql -Pit.env.docker -DskipTests -Dspotless.apply.skip=true + run: | + ./mvnw -B clean install -am -pl test/e2e/sql -Pit.env.docker -DskipTests -Dspotless.apply.skip=true + mkdir -p /tmp/dbplus-engine-honor/ - 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 @@ -116,9 +118,9 @@ jobs: uses: actions/download-artifact@v4 with: name: e2e-image - path: /tmp/ + path: /tmp/dbplus-engine-honor/ - name: Load E2E Image if: matrix.adapter == 'proxy' - run: docker load -i /tmp/${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-proxy-test.tar + run: docker load -i /tmp/dbplus-engine-honor/${{ needs.global-environment.outputs.GLOBAL_CACHE_PREFIX }}-proxy-test.tar - name: Run E2E Test run: ./mvnw -nsu -B install -f test/e2e/sql/pom.xml -Dspotless.apply.skip=true -Dit.cluster.env.type=DOCKER -Dit.cluster.adapters=${{ matrix.adapter }} -Dit.run.modes=${{ matrix.mode }} -Dit.run.additional.cases=false -Dit.scenarios=${{ matrix.scenario }} -Dit.cluster.databases=${{ matrix.database }} ${{ matrix.additional-options }}
