-
Notifications
You must be signed in to change notification settings - Fork 250
test: Enable Spark 4.0 tests #537
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
Changes from all commits
a1fff9b
465b828
62b7d2f
8db78cb
02a970a
7251eb2
17a6995
57d6538
d3efeb8
e310eb1
69ca228
3aec9e6
d629df1
65628fb
328705f
b85c712
8dc9dba
9a4b605
8ec2767
396d077
b819e99
728bf8d
8374f74
a4d050b
0cd4870
f91c7be
c146661
8c4bf05
225858f
f472ee3
1cb96dc
7911e52
e258273
c1fd154
80a292b
5999156
3335e4d
f0f8b0c
f5aa2b4
be4c367
1910927
443bee8
894985e
7959b1f
8036660
eaa4295
d388d4b
46bddfa
40d6a78
77fcaf1
6b398da
b6662a2
8505505
c030079
49364c0
3a36f2e
e05f6ff
35b4e6a
b0d6d04
bdcd186
b040bcf
2899a52
312d4c3
5a40ac9
2dcf248
2db760d
d82a233
0d0b22b
5988fff
c1d90aa
b980c0e
69f9cb2
1a386bc
9cf702d
8ce4344
f028425
024a422
f5972c2
d2aaeaa
7abba6f
7bbf373
23b1d3c
2b0b08c
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 |
|---|---|---|
|
|
@@ -22,17 +22,15 @@ concurrency: | |
| cancel-in-progress: true | ||
|
|
||
| on: | ||
| # enable the following once Ansi support is completed | ||
| # push: | ||
| # paths-ignore: | ||
| # - "doc/**" | ||
| # - "**.md" | ||
| # pull_request: | ||
| # paths-ignore: | ||
| # - "doc/**" | ||
| # - "**.md" | ||
|
|
||
| # manual trigger ONLY | ||
| push: | ||
| paths-ignore: | ||
| - "docs/**" | ||
| - "**.md" | ||
| pull_request: | ||
| paths-ignore: | ||
| - "docs/**" | ||
| - "**.md" | ||
| # manual trigger | ||
| # https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow | ||
| workflow_dispatch: | ||
|
|
||
|
|
@@ -44,8 +42,8 @@ jobs: | |
| strategy: | ||
| matrix: | ||
| os: [ubuntu-latest] | ||
| java-version: [11] | ||
| spark-version: [{short: '3.4', full: '3.4.2'}] | ||
| java-version: [17] | ||
| spark-version: [{short: '4.0', full: '4.0.0-preview1'}] | ||
|
Member
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. Is this particular for ansi test? Hmm, is there any difference between 3.4 and 4.0?
Contributor
Author
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. This has been disabled. List of failing tests #551
Member
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. Hmm, before we can enable it, can we still use 3.4 to run these tests?
Contributor
Author
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. I have not tried running this with 3.4, but based on the comment, it likely fails.
Member
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. Ah, I forgot we don't run ansi test in CI. |
||
| module: | ||
| - {name: "catalyst", args1: "catalyst/test", args2: ""} | ||
| - {name: "sql/core-1", args1: "", args2: sql/testOnly * -- -l org.apache.spark.tags.ExtendedSQLTest -l org.apache.spark.tags.SlowSQLTest} | ||
|
|
@@ -75,7 +73,8 @@ jobs: | |
| - name: Run Spark tests | ||
| run: | | ||
| cd apache-spark | ||
| ENABLE_COMET=true ENABLE_COMET_ANSI_MODE=true build/sbt ${{ matrix.module.args1 }} "${{ matrix.module.args2 }}" | ||
| rm -rf /root/.m2/repository/org/apache/parquet # somehow parquet cache requires cleanups | ||
| RUST_BACKTRACE=1 ENABLE_COMET=true ENABLE_COMET_ANSI_MODE=true build/sbt ${{ matrix.module.args1 }} "${{ matrix.module.args2 }}" | ||
| env: | ||
| LC_ALL: "C.UTF-8" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.