mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-07-01 16:21:12 -03:00
As suggested in https://github.com/fish-shell/fish-shell/discussions/11584#discussioncomment-13674983 In future, we should probably make updates automatic again.
67 lines
1.7 KiB
Bash
Executable File
67 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
{
|
|
set -ex
|
|
|
|
lint=true
|
|
if [ "$FISH_CHECK_LINT" = false ]; then
|
|
lint=false
|
|
fi
|
|
|
|
cargo_args=$FISH_CHECK_CARGO_ARGS
|
|
target_triple=$FISH_CHECK_TARGET_TRIPLE
|
|
if [ -n "$target_triple" ]; then
|
|
cargo_args="$cargo_args --target=$FISH_CHECK_TARGET_TRIPLE"
|
|
fi
|
|
|
|
cargo() {
|
|
subcmd=$1
|
|
shift
|
|
# shellcheck disable=2086
|
|
command cargo "$subcmd" $cargo_args "$@"
|
|
}
|
|
|
|
cleanup () {
|
|
if [ -n "$template_file" ] && [ -e "$template_file" ]; then
|
|
rm "$template_file"
|
|
fi
|
|
}
|
|
|
|
trap cleanup EXIT INT TERM HUP
|
|
|
|
repo_root="$(dirname "$0")/.."
|
|
build_dir="${CARGO_TARGET_DIR:-$repo_root/target}/${target_triple}/debug"
|
|
|
|
if $lint && command -v rustup >/dev/null && rustup show active-toolchain | grep -q ^stable-; then
|
|
# Check that stable is up-to-date
|
|
if rustup check | grep ^stable- | grep 'Update available'; then
|
|
exit 1
|
|
fi
|
|
# Same in CI.
|
|
rust_version=$(rustc --version | cut -d' ' -f2)
|
|
rust_version=${rust_version%.*}
|
|
grep -q "\bdtolnay/rust-toolchain@$rust_version\b" \
|
|
"$repo_root/.github/actions/rust-toolchain@stable/action.yml"
|
|
fi
|
|
|
|
if $lint; then
|
|
export RUSTFLAGS="--deny=warnings ${RUSTFLAGS}"
|
|
export RUSTDOCFLAGS="--deny=warnings ${RUSTDOCFLAGS}"
|
|
fi
|
|
|
|
template_file=$(mktemp)
|
|
FISH_GETTEXT_EXTRACTION_FILE=$template_file cargo build --workspace --all-targets
|
|
if $lint; then
|
|
PATH="$build_dir:$PATH" "$repo_root/build_tools/style.fish" --all --check
|
|
cargo clippy --workspace --all-targets
|
|
fi
|
|
cargo test --no-default-features --workspace --all-targets
|
|
cargo test --doc --workspace
|
|
if $lint; then
|
|
cargo doc --workspace
|
|
fi
|
|
FISH_GETTEXT_EXTRACTION_FILE=$template_file "$repo_root/tests/test_driver.py" "$build_dir"
|
|
|
|
exit
|
|
}
|