Remove --offline
from ./miri install
as otherwise we can't add more dependencies to miri as CI will fail.
if you want this locally, pass it to your invocation.
This commit is contained in:
parent
86911fd8f6
commit
43100f5f4b
7
miri
7
miri
@ -133,10 +133,9 @@ find_sysroot() {
|
||||
# Run command.
|
||||
case "$COMMAND" in
|
||||
install)
|
||||
# "--locked" to respect the Cargo.lock file if it exists,
|
||||
# "--offline" to avoid querying the registry (for yanked packages).
|
||||
$CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR" --force --locked --offline "$@"
|
||||
$CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR"/cargo-miri --force --locked --offline "$@"
|
||||
# "--locked" to respect the Cargo.lock file if it exists.
|
||||
$CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR" --force --locked "$@"
|
||||
$CARGO install $CARGO_EXTRA_FLAGS --path "$MIRIDIR"/cargo-miri --force --locked "$@"
|
||||
;;
|
||||
check)
|
||||
# Check, and let caller control flags.
|
||||
|
Loading…
x
Reference in New Issue
Block a user