This is an automated email from the ASF dual-hosted git repository. voonhous pushed a commit to tag rfc-105-pre-cleanup in repository https://gitbox.apache.org/repos/asf/hudi.git
commit da0664709b84d8139a8bf60a47ff12e4b31ae803 Author: voon <[email protected]> AuthorDate: Mon May 25 22:12:51 2026 +0800 fix(trino): drop ./mvnw wrapper from Trino CI workflows Hudi does not ship a Maven Wrapper; the runner has system mvn on PATH. The wrapper invocation was a holdover from the Trino-side workflow I lifted from. Switches both hudi_trino_ci.yml and hudi_trino_compat.yml to the system mvn binary so the build step can actually start. --- .github/workflows/hudi_trino_ci.yml | 4 ++-- .github/workflows/hudi_trino_compat.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/hudi_trino_ci.yml b/.github/workflows/hudi_trino_ci.yml index b9a89c52d99f..20464810aa28 100644 --- a/.github/workflows/hudi_trino_ci.yml +++ b/.github/workflows/hudi_trino_ci.yml @@ -37,6 +37,6 @@ jobs: distribution: 'temurin' cache: maven - name: Build connector - run: ./mvnw $MVN_ARGS -Phudi-trino -pl hudi-trino-plugin -am install -DskipTests + run: mvn $MVN_ARGS -Phudi-trino -pl hudi-trino-plugin -am install -DskipTests - name: Run connector tests - run: ./mvnw $MVN_ARGS -Phudi-trino -pl hudi-trino-plugin test + run: mvn $MVN_ARGS -Phudi-trino -pl hudi-trino-plugin test diff --git a/.github/workflows/hudi_trino_compat.yml b/.github/workflows/hudi_trino_compat.yml index 97162d2fe214..60dcccd25d75 100644 --- a/.github/workflows/hudi_trino_compat.yml +++ b/.github/workflows/hudi_trino_compat.yml @@ -39,7 +39,7 @@ jobs: - name: Compile hudi-trino-plugin against current Trino SPI working-directory: hudi run: | - ./mvnw $MVN_ARGS -Phudi-trino \ + mvn $MVN_ARGS -Phudi-trino \ -Dtrino.connector.version=${{ steps.trino-version.outputs.trino_version }} \ -pl hudi-trino-plugin -am compile - name: Open issue on failure
