andygrove commented on code in PR #4015: URL: https://github.com/apache/arrow-datafusion/pull/4015#discussion_r1008741971
########## Cargo.toml: ########## @@ -16,21 +16,24 @@ # under the License. [workspace] -members = [ - "datafusion/common", - "datafusion/core", - "datafusion/expr", - "datafusion/jit", - "datafusion/optimizer", - "datafusion/physical-expr", - "datafusion/proto", - "datafusion/row", - "datafusion/sql", - "datafusion-examples", - "benchmarks", -] exclude = ["datafusion-cli"] +members = ["datafusion/common", "datafusion/core", "datafusion/expr", "datafusion/jit", "datafusion/optimizer", "datafusion/physical-expr", "datafusion/proto", "datafusion/row", "datafusion/sql", "datafusion-examples", "benchmarks", +] [profile.release] codegen-units = 1 lto = true + +# the release profile takes a long time to build so we can use this profile during development to save time +# cargo build --profile release-nonlto +[profile.release-nonlto] Review Comment: The CI workflow uses this profile rather than `release` to try and save some time -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
