-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into datafusion-statistics
- Loading branch information
Showing
45 changed files
with
3,049 additions
and
950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Rust toolchain | ||
uses: ./.github/actions/setup-builder | ||
|
||
- name: Check License Header | ||
uses: apache/skywalking-eyes/[email protected] | ||
|
||
|
@@ -89,12 +92,10 @@ jobs: | |
|
||
- name: Setup Rust toolchain | ||
uses: ./.github/actions/setup-builder | ||
with: | ||
rust-version: ${{ env.rust_msrv }} | ||
|
||
- name: Cache Rust artifacts | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Build | ||
run: make build | ||
|
||
|
@@ -109,6 +110,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Rust toolchain | ||
uses: ./.github/actions/setup-builder | ||
|
||
- name: Cache Rust artifacts | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
|
@@ -122,8 +126,6 @@ jobs: | |
|
||
- name: Setup Rust toolchain | ||
uses: ./.github/actions/setup-builder | ||
with: | ||
rust-version: ${{ env.rust_msrv }} | ||
|
||
- name: Cache Rust artifacts | ||
uses: Swatinem/rust-cache@v2 | ||
|
@@ -136,3 +138,24 @@ jobs: | |
|
||
- name: Doc Test | ||
run: cargo test --no-fail-fast --doc --all-features --workspace | ||
|
||
msrv: | ||
name: Verify MSRV | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Nightly Rust toolchain | ||
uses: ./.github/actions/setup-builder | ||
- name: Generate minimal versions lockfile | ||
run: | | ||
cargo generate-lockfile -Z direct-minimal-versions -Z minimal-versions | ||
# Some dependencies don't correctly specify a minimal version for their dependencies and will fail to build. | ||
# So we update these transitive dependencies here. | ||
cargo update tap faststr metainfo linkedbytes | ||
- name: Setup MSRV Rust toolchain | ||
uses: ./.github/actions/setup-builder | ||
with: | ||
rust-version: ${{ env.rust_msrv }} | ||
- name: Check MSRV | ||
run: | | ||
cargo +${{ env.rust_msrv }} check --locked --workspace --exclude iceberg-datafusion --exclude iceberg-catalog-s3tables --exclude iceberg-integration-tests |
Oops, something went wrong.