Skip to content
Merged

thin-ci #20972

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@ jobs:
rust-version: stable
- name: Run sqllogictest
run: |
cargo test --features backtrace,parquet_encryption --profile release --test sqllogictests -- --include-sqlite
cargo test --features backtrace,parquet_encryption --profile ci-optimized --test sqllogictests -- --include-sqlite
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ overflow-checks = false
rpath = false
strip = false # Retain debug info for flamegraphs

[profile.ci-optimized]
inherits = "release"
codegen-units = 16
lto = "thin"
strip = true

[profile.ci]
debug = false
inherits = "dev"
Expand Down
Loading