mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-06-19 00:56:36 +00:00

* Add Records::retain Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Sync with cargo manifest Rm uninstalled crates Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix entry.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Test manifest syncing in e2e-tests/live.sh Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix binstall_crates_v1.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix crates_manifests.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix binstall_crates_v1.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix entry.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix clippy in entry.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix fmt in entry.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix fmt in crates_manifests.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> * Fix fmt in crates_manifests.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --------- Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
73 lines
2 KiB
Bash
Executable file
73 lines
2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
unset CARGO_INSTALL_ROOT
|
|
|
|
# - `b3sum@<=1.3.3` would test `fetch_crate_cratesio_version_matched` ability
|
|
# to find versions matching <= 1.3.3
|
|
# - `cargo-quickinstall` would test `fetch_crate_cratesio_version_matched` ability
|
|
# to find latest stable version.
|
|
# - `git-mob-tool tests the using of using a binary name (`git-mob`) different
|
|
# from the package name.
|
|
crates="b3sum@<=1.3.3 cargo-release@0.24.9 cargo-binstall@0.20.1 cargo-watch@8.4.0 miniserve@0.23.0 sccache@0.3.3 cargo-quickinstall jj-cli@0.18.0 git-mob-tool@1.6.1"
|
|
|
|
CARGO_HOME=$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-home')
|
|
export CARGO_HOME
|
|
othertmpdir=$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-test')
|
|
export PATH="$CARGO_HOME/bin:$othertmpdir/bin:$PATH"
|
|
|
|
mkdir -p "$othertmpdir/bin"
|
|
# Copy it to bin to test use of env var `CARGO`
|
|
cp "./$1" "$othertmpdir/bin/"
|
|
|
|
# Install binaries using cargo-binstall
|
|
# shellcheck disable=SC2086
|
|
cargo binstall --no-confirm $crates
|
|
|
|
rm -r "$othertmpdir"
|
|
|
|
# Test that the installed binaries can be run
|
|
b3sum_version="$(b3sum --version)"
|
|
echo "$b3sum_version"
|
|
|
|
[ "$b3sum_version" = "b3sum 1.3.3" ]
|
|
|
|
cargo_release_version="$(cargo-release release --version)"
|
|
echo "$cargo_release_version"
|
|
|
|
[ "$cargo_release_version" = "cargo-release 0.24.9" ]
|
|
|
|
cargo binstall --help >/dev/null
|
|
|
|
cargo_binstall_version="$(cargo-binstall -V)"
|
|
echo "cargo-binstall version $cargo_binstall_version"
|
|
|
|
[ "$cargo_binstall_version" = "0.20.1" ]
|
|
|
|
cargo_watch_version="$(cargo watch -V)"
|
|
echo "$cargo_watch_version"
|
|
|
|
[ "$cargo_watch_version" = "cargo-watch 8.4.0" ]
|
|
|
|
miniserve_version="$(miniserve -V)"
|
|
echo "$miniserve_version"
|
|
|
|
[ "$miniserve_version" = "miniserve 0.23.0" ]
|
|
|
|
cargo-quickinstall -V
|
|
|
|
jj_version="$(jj --version)"
|
|
echo "$jj_version"
|
|
|
|
[ "$jj_version" = "jj 0.18.0-9fb5307b7886e390c02817af7c31b403f0279144" ]
|
|
|
|
git_mob_version="$(git-mob --version)"
|
|
echo "$git_mob_version"
|
|
|
|
[ "$git_mob_version" = "git-mob-tool 1.6.1" ]
|
|
|
|
cargo uninstall b3sum cargo-binstall
|
|
|
|
"./$1" binstall -y cargo-binstall@0.20.1
|
|
jq <"$CARGO_HOME/binstall/crates-v1.json" | grep -v b3sum
|