File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
.github/actions/java-test Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,17 @@ runs:
67
67
if : ${{ inputs.suites == '' }}
68
68
env :
69
69
COMET_PARQUET_SCAN_IMPL : ${{ inputs.scan_impl }}
70
+ SPARK_LOCAL_HOSTNAME : " localhost"
71
+ SPARK_LOCAL_IP : " 127.0.0.1"
70
72
run : |
71
73
MAVEN_OPTS="-Xmx4G -Xms2G -XX:+UnlockDiagnosticVMOptions -XX:+ShowMessageBoxOnError -XX:+HeapDumpOnOutOfMemoryError -XX:ErrorFile=./hs_err_pid%p.log" SPARK_HOME=`pwd` ./mvnw -B clean install ${{ inputs.maven_opts }}
72
74
- name : Run specified tests
73
75
shell : bash
74
76
if : ${{ inputs.suites != '' }}
75
77
env :
76
78
COMET_PARQUET_SCAN_IMPL : ${{ inputs.scan_impl }}
79
+ SPARK_LOCAL_HOSTNAME : " localhost"
80
+ SPARK_LOCAL_IP : " 127.0.0.1"
77
81
run : |
78
82
MAVEN_SUITES="$(echo "${{ inputs.suites }}" | paste -sd, -)"
79
83
echo "Running with MAVEN_SUITES=$MAVEN_SUITES"
You can’t perform that action at this time.
0 commit comments