We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e8c814 commit ede0e49Copy full SHA for ede0e49
.github/actions/java-test/action.yaml
@@ -86,7 +86,8 @@ runs:
86
MAVEN_SUITES="$(echo "${{ inputs.suites }}" | paste -sd, -)"
87
echo "Running with MAVEN_SUITES=$MAVEN_SUITES"
88
MAVEN_OPTS="-Xmx4G -Xms2G -DwildcardSuites=$MAVEN_SUITES -XX:+UnlockDiagnosticVMOptions -XX:+ShowMessageBoxOnError -XX:+HeapDumpOnOutOfMemoryError -XX:ErrorFile=./hs_err_pid%p.log" SPARK_HOME=`pwd` ./mvnw -B clean install ${{ inputs.maven_opts }}
89
- // clean tmp dir to avoid hashFiles error
+ # Hadoop mini cluster may interfere with spark shutdown hook, causing the tmp directory to not be fully cleaned up.
90
+ # Clean tmp dir to avoid hashFiles error
91
ls spark/target/tmp
92
rm -rf spark/target/tmp
93
- name: Upload crash logs
0 commit comments