This is an automated email from the ASF dual-hosted git repository. zhouyuan pushed a commit to branch wip_macos_test in repository https://gitbox.apache.org/repos/asf/gluten.git
commit 126cd6fa38456528bc37377d5621e65b167d47a9 Author: Yuan <[email protected]> AuthorDate: Wed Jul 29 10:56:48 2026 +0100 adding basic tpc test for mac Signed-off-by: Yuan <[email protected]> --- .github/workflows/velox_weekly.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/velox_weekly.yml b/.github/workflows/velox_weekly.yml index dab8d5c1b0..cf466f26e2 100644 --- a/.github/workflows/velox_weekly.yml +++ b/.github/workflows/velox_weekly.yml @@ -336,8 +336,11 @@ jobs: with: path: '${{ env.CCACHE_DIR }}' key: ccache-weekly-macos-${{runner.arch}}-${{ hashFiles('ep/build-velox/src/**') }} + - name: Fix JAVA_HOME on macOS + run: echo "JAVA_HOME=$(/usr/libexec/java_home -v 17)" >> $GITHUB_ENV - name: Build run: | + echo "JAVA_HOME: $JAVA_HOME" export CCACHE_MAXSIZE=1G mkdir -p $CCACHE_DIR ./dev/buildbundle-veloxbe.sh --run_setup_script=ON --build_arrow=ON --build_tests=ON --build_benchmarks=ON --spark_version=3.5 @@ -352,3 +355,8 @@ jobs: key: ccache-weekly-macos-${{runner.arch}}-${{ hashFiles('ep/build-velox/src/**') }} include-hidden-files: true retention-days: '7' + - name: Run TPC-H + run: | + echo "JAVA_HOME: $JAVA_HOME" + cd $GITHUB_WORKSPACE/tools/gluten-it + $TPCH_TEST \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
