timsaucer commented on code in PR #10134:
URL: https://github.com/apache/arrow-rs/pull/10134#discussion_r3401520230
##########
.github/workflows/rust.yml:
##########
@@ -118,7 +118,9 @@ jobs:
uses: ./.github/actions/setup-builder
- name: Install cargo-msrv (if needed)
# cargo-msrv binary may be cached by the cargo cache step in
setup-builder, and cargo install will error if it is already installed
- run: if which cargo-msrv ; then echo "using existing cargo-msrv
binary" ; else cargo install cargo-msrv ; fi
+ # --locked uses cargo-msrv's pinned Cargo.lock; without it an unpinned
transitive
+ # dep (aws-runtime) resolves to a version that fails to compile (E0282)
+ run: if which cargo-msrv ; then echo "using existing cargo-msrv
binary" ; else cargo install cargo-msrv --locked ; fi
Review Comment:
This is a drive by change to using the locked version to resolve this CI
failure:
https://github.com/apache/arrow-rs/actions/runs/27400807826/job/80978193449
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]