-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
build: Do not enable all components when testing is enabled #11896
build: Do not enable all components when testing is enabled #11896
Conversation
✅ Deploy Preview for meta-velox canceled.
|
e4d29d5
to
ccb4885
Compare
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.
Yeah removing this makes sense as it also overrides any custom set variables from the command line.
@majetideepak The build failure in the "Fuzzer Jobs" CI looks suspicious, it may be related to your changes. Regardless, could you rebase your change in case it's unrelated so I can merge it, it may also just be an old issue. |
ccb4885
to
db7b271
Compare
@kevinwilfong It does look related. VELOX_ENABLE_PARQUET was always transitively enabled via VELOX_BUILD_TESTING (ON by default). I enabled Parquet by default now. |
This Spark Fuzzer failure is not related. |
@kevinwilfong has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@kevinwilfong merged this pull request in 1442bd5. |
…incubator#11896) Summary: The goal is to improve the developer experience. If I want to build wave tests, I want to be able to only build the corresponding tests by disabling unrelated components such as Spark functions, TPC-H connector, etc. However, the current CMake setup enables these components when testing is enabled. All of these components except for examples are enabled by default. Pull Request resolved: facebookincubator#11896 Reviewed By: Yuhta Differential Revision: D67910097 Pulled By: kevinwilfong fbshipit-source-id: cc932b9397a6cb649ab12c0c1e1860dca75d4ff8
The goal is to improve the developer experience. If I want to build wave tests,
I want to be able to only build the corresponding tests by disabling unrelated
components such as Spark functions, TPC-H connector, etc. However, the current CMake setup enables these components when testing is enabled.
All of these components except for examples are enabled by default.