Skip to content

Commit

Permalink
Upload hs_err_pid*.log
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouyifan279 committed Jun 24, 2024
1 parent a551244 commit a3415c8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/gluten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ jobs:
run: |
TEST_MODULES="integration-tests/kyuubi-gluten-it"
export LD_LIBRARY_PATH=$(pwd)/gluten/package/target/thirdparty-lib
# Enable core dumping
ulimit -c unlimited
./build/mvn ${MVN_OPT} -Pgluten-it -Pspark-${{ matrix.spark }} -pl ${TEST_MODULES} -am clean install -DskipTests
./build/mvn ${MVN_OPT} -Pgluten-it -Pspark-${{ matrix.spark }} -pl ${TEST_MODULES} test
- name: Upload test logs
Expand All @@ -128,5 +130,11 @@ jobs:
with:
name: unit-tests-log-spark-${{ matrix.spark }}-gluten
path: |
integration-tests/kyuubi-gluten-it/target/unit-tests.log
**/target/unit-tests.log
- name: Upload JVM error logs
if: failure()
uses: actions/upload-artifact@v3
with:
name: jvm-error-log-spark-${{ matrix.spark }}-gluten
path: |
integration-tests/kyuubi-gluten-it/*.log

0 comments on commit a3415c8

Please sign in to comment.