You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that Cargo.lock.msrv is currently listing an old version of libc which we can't possibly build with anymore (due to requiring new functions/constants)... it seems like the Minver CI check is not working correctly.
Do we need --locked? I'm guessing we're copying Cargo.lock.msrv to Cargo.lock and then promptly overwriting it with cargo check.
Or am I misunderstanding how this is intended to work?
The text was updated successfully, but these errors were encountered:
The Cargo.lock.msrv file is used to test the MSRV, not for Minver. It is working, although I think we can eliminate it now that our MSRV is 1.56.1 too. Minver is tested separately, using the nightly compiler.
asomers
added a commit
to asomers/nix
that referenced
this issue
Aug 26, 2022
1810: Eliminate Cargo.lock.msrv r=rtzoeller a=asomers
We no longer need it since updating our MSRV to 1.56.1.
Issue #1809
Co-authored-by: Alan Somers <asomers@gmail.com>
I noticed that
Cargo.lock.msrv
is currently listing an old version oflibc
which we can't possibly build with anymore (due to requiring new functions/constants)... it seems like the Minver CI check is not working correctly.Do we need
--locked
? I'm guessing we're copyingCargo.lock.msrv
toCargo.lock
and then promptly overwriting it withcargo check
.Or am I misunderstanding how this is intended to work?
The text was updated successfully, but these errors were encountered: