mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-01-19 05:49:14 +02:00
09c5b2c4ea
This fixes CI to handle the new documentation files. We also continue to do more cleanup. In particular, we devise a nicer way of detecting the most recent Cargo OUT_DIR by writing a dummy file, and looking for the most recently modified version of that file.
52 lines
1.4 KiB
Bash
Executable File
52 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# build, test and generate docs in this phase
|
|
|
|
set -ex
|
|
|
|
. "$(dirname $0)/utils.sh"
|
|
|
|
main() {
|
|
# Travis sometimes caches the target directory, which makes testing the
|
|
# output of cargo a little trickier. So just wipe it.
|
|
cargo clean
|
|
# Test a normal debug build.
|
|
cargo build --target "$TARGET" --verbose --all
|
|
|
|
# Show the output of the most recent build.rs stderr.
|
|
set +x
|
|
stderr="$(find "target/$TARGET/debug" -name stderr -print0 | xargs -0 ls -t | head -n1)"
|
|
if [ -s "$stderr" ]; then
|
|
echo "===== $stderr ====="
|
|
cat "$stderr"
|
|
echo "====="
|
|
fi
|
|
set -x
|
|
|
|
# sanity check the file type
|
|
file target/"$TARGET"/debug/rg
|
|
|
|
# Apparently tests don't work on arm, so just bail now. I guess we provide
|
|
# ARM releases on a best effort basis?
|
|
if is_arm; then
|
|
return 0
|
|
fi
|
|
|
|
# Test that zsh completions are in sync with ripgrep's actual args.
|
|
"$(dirname "${0}")/test_complete.sh"
|
|
|
|
# Check that we've generated man page and other shell completions.
|
|
outdir="$(cargo_out_dir "target/$TARGET/debug")"
|
|
file "$outdir/rg.bash"
|
|
file "$outdir/rg.fish"
|
|
file "$outdir/_rg.ps1"
|
|
# N.B. man page isn't generated on ARM cross-compile, but we gave up
|
|
# long before this anyway.
|
|
file "$outdir/rg.1"
|
|
|
|
# Run tests for ripgrep and all sub-crates.
|
|
cargo test --target "$TARGET" --verbose --all
|
|
}
|
|
|
|
main
|