This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-shade.git
The following commit(s) were added to refs/heads/main by this push:
new 2559446 remove mvnw in ci
2559446 is described below
commit 2559446bf4722180202fa2151a895d005d60d31c
Author: Jingsong <[email protected]>
AuthorDate: Mon May 6 14:43:58 2024 +0800
remove mvnw in ci
---
.github/workflows/ci.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1eaa8d1..d3c72d0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -39,12 +39,12 @@ jobs:
run: |
set -o pipefail
- ./mvnw clean deploy ${{ env.MVN_COMMON_OPTIONS }}
-Dmaven.test.skip=true \
+ mvn clean deploy ${{ env.MVN_COMMON_OPTIONS }}
-Dmaven.test.skip=true \
-DaltDeploymentRepository=validation_repository::default::file:${{
env.MVN_VALIDATION_DIR }} \
| tee ${{ env.MVN_BUILD_OUTPUT_FILE }}
- name: Check licensing
run: |
- ./mvnw ${{ env.MVN_COMMON_OPTIONS }} exec:java@check-licensing -N \
+ mvn ${{ env.MVN_COMMON_OPTIONS }} exec:java@check-licensing -N \
-Dexec.args="${{ env.MVN_BUILD_OUTPUT_FILE }} $(pwd) ${{
env.MVN_VALIDATION_DIR }}" \
-Dlog4j.configurationFile=file://$(pwd)/tools/ci/log4j.properties