Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/actions/java-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ inputs:
description: 'Maven options passed to the mvn command'
required: false
default: ''
scan_impl:
description: 'The default Parquet scan implementation'
required: false
default: 'native_comet'
upload-test-reports:
description: 'Whether to upload test results including coverage to GitHub'
required: false
Expand Down Expand Up @@ -58,11 +62,15 @@ runs:
- name: Run all tests
shell: bash
if: ${{ inputs.suites == '' }}
env:
COMET_PARQUET_SCAN_IMPL: ${{ inputs.scan_impl }}
run: |
MAVEN_OPTS="-XX:+UnlockDiagnosticVMOptions -XX:+ShowMessageBoxOnError -XX:+HeapDumpOnOutOfMemoryError -XX:ErrorFile=./hs_err_pid%p.log" SPARK_HOME=`pwd` ./mvnw -B clean install ${{ inputs.maven_opts }}
- name: Run specified tests
shell: bash
if: ${{ inputs.suites != '' }}
env:
COMET_PARQUET_SCAN_IMPL: ${{ inputs.scan_impl }}
run: |
MAVEN_SUITES="$(echo "${{ inputs.suites }}" | paste -sd, -)"
echo "Running with MAVEN_SUITES=$MAVEN_SUITES"
Expand Down
317 changes: 0 additions & 317 deletions .github/workflows/pr_build.yml

This file was deleted.

Loading
Loading