mirror of
https://github.com/BurntSushi/jiff.git
synced 2025-12-23 08:47:45 +00:00
... so that we can run each piece in its own job in CI. This creates an obscene number of jobs, but I'm really hoping this cuts down on the total wall clock time.
10 lines
230 B
Bash
Executable file
10 lines
230 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# cd to the directory containing this crate's Cargo.toml so that we don't need
|
|
# to pass --manifest-path to every `cargo` command.
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "===== DEFAULT FEATURES ====="
|
|
cargo test --all
|