@@ -136,15 +136,15 @@ jobs:
136
136
needs : [ linux-build-lib ]
137
137
runs-on : ubuntu-latest
138
138
container :
139
- image : amd64/rust
139
+ image : amd64/rust:1.76
140
140
steps :
141
141
- uses : actions/checkout@v4
142
142
with :
143
143
submodules : true
144
144
- name : Setup Rust toolchain
145
145
uses : ./.github/actions/setup-builder
146
146
with :
147
- rust-version : stable
147
+ rust-version : stable
148
148
- name : Run tests (excluding doctests)
149
149
run : cargo test --lib --tests --bins --features avro,json,backtrace
150
150
- name : Verify Working Directory Clean
@@ -338,15 +338,15 @@ jobs:
338
338
steps :
339
339
- uses : actions/checkout@v4
340
340
with :
341
- submodules : true
341
+ submodules : true
342
342
- name : Setup Rust toolchain
343
- uses : ./.github/actions/setup-macos-builder
343
+ uses : ./.github/actions/setup-macos-builder
344
344
- name : Run tests (excluding doctests)
345
345
shell : bash
346
346
run : |
347
347
cargo test --lib --tests --bins --features avro,json,backtrace
348
348
cd datafusion-cli
349
- cargo test --lib --tests --bins --all-features
349
+ cargo test --lib --tests --bins --all-features
350
350
351
351
macos-aarch64 :
352
352
name : cargo test (macos-aarch64)
@@ -567,19 +567,19 @@ jobs:
567
567
# (Min Supported Rust Version) than the one specified in the
568
568
# `rust-version` key of `Cargo.toml`.
569
569
#
570
- # To reproduce:
571
- # 1. Install the version of Rust that is failing. Example:
570
+ # To reproduce:
571
+ # 1. Install the version of Rust that is failing. Example:
572
572
# rustup install 1.76.0
573
573
# 2. Run the command that failed with that version. Example:
574
574
# cargo +1.76.0 check -p datafusion
575
- #
575
+ #
576
576
# To resolve, either:
577
- # 1. Change your code to use older Rust features,
577
+ # 1. Change your code to use older Rust features,
578
578
# 2. Revert dependency update
579
579
# 3. Update the MSRV version in `Cargo.toml`
580
580
#
581
581
# Please see the DataFusion Rust Version Compatibility Policy before
582
- # updating Cargo.toml. You may have to update the code instead.
582
+ # updating Cargo.toml. You may have to update the code instead.
583
583
# https://github.com/apache/datafusion/blob/main/README.md#rust-version-compatibility-policy
584
584
cargo msrv --output-format json --log-target stdout verify
585
585
- name : Check datafusion-substrait
0 commit comments