This is an automated email from the ASF dual-hosted git repository. blaginin pushed a commit to branch db/ci-optimized in repository https://gitbox.apache.org/repos/asf/datafusion.git
commit 136647163026d78a721d938e66c59a75edd64111 Author: blaginin <[email protected]> AuthorDate: Mon Mar 16 19:57:10 2026 +0000 ci optimized profile --- .github/workflows/extended.yml | 2 +- Cargo.toml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/extended.yml b/.github/workflows/extended.yml index 3837feb622..c2aa96d92e 100644 --- a/.github/workflows/extended.yml +++ b/.github/workflows/extended.yml @@ -179,4 +179,4 @@ jobs: rust-version: stable - name: Run sqllogictest run: | - cargo test --features backtrace,parquet_encryption --profile release --test sqllogictests -- --include-sqlite \ No newline at end of file + cargo test --features backtrace,parquet_encryption --profile ci-optimized --test sqllogictests -- --include-sqlite \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index a185cd874a..fdde108810 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -262,6 +262,11 @@ overflow-checks = false rpath = false strip = false # Retain debug info for flamegraphs +[profile.ci-optimized] +codegen-units = 16 +lto = "thin" +strip = true + [profile.ci] debug = false inherits = "dev" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
