mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 12:38:43 +00:00

* feat: Merge --disable-strategies with ones in cargo manifest Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Update doc Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Update e2e-test-strategies Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Fix typo in option doc in crates/bin/src/args.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
66 lines
1.5 KiB
Bash
Executable file
66 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
unset CARGO_INSTALL_ROOT
|
|
|
|
CARGO_HOME=$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-home')
|
|
export CARGO_HOME
|
|
export PATH="$CARGO_HOME/bin:$PATH"
|
|
|
|
## Test --disable-strategies
|
|
set +e
|
|
|
|
"./$1" binstall --no-confirm --disable-strategies quick-install,compile cargo-update@11.1.2
|
|
exit_code="$?"
|
|
|
|
set -e
|
|
|
|
if [ "$exit_code" != 94 ]; then
|
|
echo "Expected exit code 94, but actual exit code $exit_code"
|
|
exit 1
|
|
fi
|
|
|
|
## Test --strategies
|
|
set +e
|
|
|
|
"./$1" binstall --no-confirm --strategies crate-meta-data cargo-update@11.1.2
|
|
exit_code="$?"
|
|
|
|
set -e
|
|
|
|
if [ "$exit_code" != 94 ]; then
|
|
echo "Expected exit code 94, but actual exit code $exit_code"
|
|
exit 1
|
|
fi
|
|
|
|
## Test compile-only strategy
|
|
"./$1" binstall --no-confirm --strategies compile cargo-quickinstall@0.2.8
|
|
|
|
## Test Cargo.toml disable-strategies
|
|
set +e
|
|
|
|
"./$1" binstall --no-confirm --manifest-path "manifests/strategies-test-Cargo.toml" cargo-update@11.1.2
|
|
exit_code="$?"
|
|
|
|
set -e
|
|
|
|
if [ "$exit_code" != 94 ]; then
|
|
echo "Expected exit code 94, but actual exit code $exit_code"
|
|
exit 1
|
|
fi
|
|
|
|
set +e
|
|
|
|
"./$1" binstall --disable-strategies compile --no-confirm --manifest-path "manifests/strategies-test-Cargo2.toml" cargo-update@11.1.2
|
|
exit_code="$?"
|
|
|
|
set -e
|
|
|
|
if [ "$exit_code" != 94 ]; then
|
|
echo "Expected exit code 94, but actual exit code $exit_code"
|
|
exit 1
|
|
fi
|
|
|
|
## Test --strategies overriding `disabled-strategies=["compile"]` in Cargo.toml
|
|
"./$1" binstall --no-confirm --manifest-path "manifests/strategies-test-override-Cargo.toml" --strategies compile cargo-quickinstall@0.2.10
|