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

* Refactor: Move `Strategy` to `binstalk-types` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add serialisation test for `Strategy` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add support to disable strategies via crate `Cargo.toml` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add e2e-test Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Fix `Cargo.toml` disabled strategy checking for compile strategy Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Optimize `resolve_inner`: Cache meta override Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add compile-time length checking for `Strategy` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * More optimization Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Fix order of override: cli options alwayus takes precedence Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add missing manifest for e2e-test Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
51 lines
1 KiB
Bash
Executable file
51 lines
1 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 --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
|