Perform tasks concurrently over multiple copies of your repo.
Example use cases:
The name pando comes from the clonal colony of "multiple" trees that are actually one single organism. It is latin for "I spread out".
HERE BE DRAGONS. This extension is in the early stages of development and may cause data loss or worse. Only use if you're very comfortable with git and have backups.
There may also be backwards incompatible changes for each version.
Will be easily installable from crates.io once it's more mature.
bash
git clone (repo url here)
cd cargo-pando
cargo install --path .
Upgrading
bash
git pull origin master
cargo install --path . --force
.travis.yml
, or just using all the installed ones.target/pando
per toolchain, e.g. target/pando/1.31.0
. Note that this is destructive.cargo +TOOLCHAIN_HERE test
or some other action in each copy of the repo.
For example, cargo +1.31.0 test
in target/pando/1.31.0/working_dir
.Output is logged to target/pando/TOOLCHAIN_HERE/output
.
See cargo pando help
for more details.
Test the working directory against the toolchains listed in .travis.yml
:
bash
cargo pando test
Test against every installed toolchain except the default, limiting it to 2 cargo test
s at any given time:
bash
cargo pando --all test -j 2
Test each specified toolchain, but only doc tests:
bash
cargo pando -t stable -t beta test -- --doc
Test the given toolchain against the index (stage) of your repo.
Useful if you're incrementally adding changes to a commit and you want to check that your work in progress still works.
bash
cargo pando --index -t stable test
do
subsubcommand to make multiple actions easier (use square brackets for separation?)