-
Notifications
You must be signed in to change notification settings - Fork 913
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[KYUUBI #6449] Fix Gluten CI ClassNotFoundException: io.glutenproject.GlutenPlugin #6449
Changes from all commits
dd2a75e
5d7ad1b
4d70a5d
f7aa0ba
7626c1e
532e86c
e7ea815
028c947
fc0b991
0251720
20bb171
1ea91e9
2c8a1f1
6391c4d
4f1f34b
738065f
a8fd720
af090c2
706e920
a551244
a3415c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ name: Gluten CI | |
on: | ||
schedule: | ||
- cron: 0 4 * * * | ||
pull_request: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
env: | ||
MVN_OPT: -Dmaven.javadoc.skip=true -Drat.skip=true -Dscalastyle.skip=true -Dspotless.check.skip -Dorg.slf4j.simpleLogger.defaultLogLevel=warn -Pjdbc-shaded,gen-policy -Dmaven.plugin.download.cache.path=/tmp/engine-archives | ||
|
@@ -61,9 +65,9 @@ jobs: | |
- name: Build gluten project | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Try remove There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK. Let me try. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ulysses-you It failed at Step
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let me try There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can remove non-required library, according to https://github.com/apache/incubator-gluten/blob/main/docs/developers/docker_ubuntu22.04.md There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
run: | | ||
if [[ "${{ steps.gluten-cache.outputs.cache-hit }}" != 'true' ]]; then | ||
git clone https://github.com/oap-project/gluten.git | ||
git clone https://github.com/apache/incubator-gluten.git gluten | ||
cd gluten | ||
./dev/buildbundle-veloxbe.sh | ||
./dev/package.sh | ||
fi | ||
- uses: actions/cache@v3 | ||
if: steps.gluten-cache.outputs.cache-hit != 'true' | ||
|
@@ -115,6 +119,9 @@ jobs: | |
- name: Run Gluten Integration TPC-H/DS Test | ||
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 | ||
|
@@ -124,3 +131,10 @@ jobs: | |
name: unit-tests-log-spark-${{ matrix.spark }}-gluten | ||
path: | | ||
**/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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this before merge