Skip to content
Closed
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
7 changes: 6 additions & 1 deletion .github/actions/java-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
name: "Java Test"
description: "Run Java tests"
inputs:
suites:
description: 'suites'
default: ''
maven_opts:
description: 'Maven options passed to the mvn command'
required: false
Expand Down Expand Up @@ -54,7 +57,9 @@ runs:
- name: Run tests
shell: bash
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 }}
MAVEN_SUITES="$(echo "${{ inputs.suites }}" | paste -sd, -)"
echo "Running with MAVEN_SUITES=$MAVEN_SUITES"
MAVEN_OPTS="-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 }} ${{ env.MAVEN_SUITES }}
- name: Upload crash logs
if: failure()
uses: actions/upload-artifact@v4
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/benchmark-tpch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ concurrency:
cancel-in-progress: true

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# pull_request:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# manual trigger
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ concurrency:
cancel-in-progress: true

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# pull_request:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# manual trigger
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/miri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
name: Run Miri Safety Checks

on:
push:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "doc/**"
- "docs/**"
- "**.md"
# push:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# pull_request:
# paths-ignore:
# - "doc/**"
# - "docs/**"
# - "**.md"
# manual trigger
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch:
Expand Down
Loading