cargo-pando   ![Latest Version] ![Rustc Version 1.31+] ![Build Status]

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".

Stability

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.

Installation

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

How it Works

  1. Figure out what toolchains to run against, either from the CLI, .travis.yml, or just using all the installed ones.
  2. Create a copy of the repo's code in target/pando per toolchain, e.g. target/pando/1.31.0. Note that this is destructive.
  3. Run 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.

Examples

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 tests 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

Git

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

TODO