Skip to content

Commit 94a3745

Browse files
committed
Fix installation of cross during CI
use --locked with cargo install so it won't pull in a version of addr2line that is too new for our MSRV.
1 parent 4708cd5 commit 94a3745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ task:
131131
- curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
132132
- sh rustup.sh -y --profile=minimal --default-toolchain $MSRV
133133
- . $HOME/.cargo/env
134-
- cargo install cross --version 0.2.1 # cross 0.2.2 bumped the MSRV to 1.58.1
134+
- cargo install cross --version 0.2.1 --locked # cross 0.2.2 bumped the MSRV to 1.58.1
135135
<< : *TEST
136136
before_cache_script: rm -rf $CARGO_HOME/registry/index
137137

0 commit comments

Comments
 (0)