summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-01-16 20:17:16 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-01-16 20:23:34 +0100
commit3f7e6624314b60cdeb4912e69445ec29e245e5cd (patch)
treead5f3a0e2f081a17720abf46de6b9ddf546699c1 /.travis.yml
parent3dac37478a9459f97d980828dabee3f02c752cf4 (diff)
travis: Run cargo chain for all cargo files
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index d88894af..a19bf942 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -44,6 +44,11 @@ script:
}
[[ $(changes_in "doc") ]] && echo "Changes in ./doc are not build by CI"
+
+ for d in $(find -name "Cargo.toml" | grep -vE "^.$"); do
+ dir=$(dirname $d)
+ changes_in $dir && travis_cargo_run_in $dir
+ done
travis_cargo_run_in "."
addons: