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

Fixed #838 - Add new key `subcrate` for rendering `pkg-url` - Add new release paths in GitHub, GitLab & SourceForge using key `subcrate` for auto-detection - Add subcrate detection for GitHub and GitLab - Add `debug!` when using gh api token in `GhApiClient::new` - Add subcrate testing to `e2e-tests/subcrate.sh` - Bump cargo-release to 0.24.9 in e2e-tests/live.sh to fix test failure on MacOS without libssl installed in `/usr/local/`. - Optimize GhCrateMeta: Detect subcrate and repo-host in `Data::get_repo_info` to cache the result and avoid duplicate works, this also makes the code more ergonomic by removing the need to some `unwrap()` plus making it more efficient since we don't need to clone the url just to modify it. - Add instrument to `Data::get_repo_info` - Fix `shellcheck` err in `e2e-tests/*.sh` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
30 lines
761 B
Bash
Executable file
30 lines
761 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -uxo 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
|
|
"./$1" binstall --no-confirm --disable-strategies quick-install,compile cargo-update@11.1.2
|
|
exit_code="$?"
|
|
|
|
if [ "$exit_code" != 94 ]; then
|
|
echo "Expected exit code 94, but actual exit code $exit_code"
|
|
exit 1
|
|
fi
|
|
|
|
## Test --strategies
|
|
"./$1" binstall --no-confirm --strategies crate-meta-data cargo-update@11.1.2
|
|
exit_code="$?"
|
|
|
|
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
|