Skip to content

Commit ada34d4

Browse files
committed
Merge origin/main into feature/add-tracing-for-performance-analysis
Resolved conflicts: - crates/core/src/delta_datafusion/mod.rs: Kept find_files implementation with tracing - crates/core/src/operations/optimize.rs: Merged logging with object_store initialization - crates/core/src/operations/write/mod.rs: Used DeltaPlanner::new() from main, maintained tracing - crates/core/src/protocol/checkpoints.rs: Used specific tracing imports from main
2 parents 44b478c + 52e6fa2 commit ada34d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2054
-1992
lines changed

.github/actions/setup-env/action.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ runs:
1616
using: "composite"
1717

1818
steps:
19-
- name: checkout
20-
uses: actions/checkout@v4
21-
2219
- name: Install uv
2320
uses: astral-sh/setup-uv@v3
2421

@@ -27,14 +24,13 @@ runs:
2724
with:
2825
python-version: ${{ inputs.python-version }}
2926

30-
- name: Install Rust toolchain
31-
uses: actions-rs/toolchain@v1
32-
with:
33-
profile: default
34-
toolchain: ${{ inputs.rust-toolchain }}
35-
override: true
36-
components: rustfmt, clippy
27+
- name: Setup sccache
28+
uses: mozilla-actions/[email protected]
3729

38-
- uses: Swatinem/rust-cache@v2
30+
- name: Setup Rust toolchain
31+
uses: actions-rust-lang/setup-rust-toolchain@v1
3932
with:
40-
cache-targets: false
33+
toolchain: ${{ inputs.rust-toolchain }}
34+
cache: true
35+
# if we ever get rid of all the clippy warnings, we can remove this line
36+
rustflags: ""

0 commit comments

Comments
 (0)