Merge pull request #197 from matthiasbeyer/travis-build-all

Rewrite travis.yml to build all the things
This commit is contained in:
Matthias Beyer 2016-02-15 18:27:14 +01:00
commit 0bf22672f9
1 changed files with 9 additions and 16 deletions

View File

@ -27,12 +27,6 @@ before_script:
script:
- |
changes_in() {
[[ $(git diff --name-only $(git merge-base master $TRAVIS_COMMIT)..$TRAVIS_COMMIT | \
cut -d "/" -f 1 | \
grep "$n") ]] > /dev/null
}
travis_cargo_run_in() {
echo ":: Trying to run cargo in $1"
[[ -d "$1" ]] &&
@ -47,26 +41,25 @@ script:
}
run_sh_test() {
echo "-- Running test script: $1"
bash $1 || { echo "-- Test failed. Exiting"; exit 1; }
echo "-- Test script $1 executed successfully"
echo "--- Running test script: $1"
bash $1 || { echo "--- Test failed. Exiting"; exit 1; }
echo "--- Test script $1 executed successfully"
}
[[ $(changes_in "doc") ]] && echo "Changes in ./doc are not build by CI"
echo "<< Changes in ./doc are not build by CI >>"
for d in $(find -name "Cargo.toml" | grep -vE "^./Cargo.toml$"); do
echo ":: Working on $d"
dir=$(dirname $d)
{ \
changes_in $dir && \
echo -e "\nRunning in $d\n" && \
travis_cargo_run_in $dir && \
tree -I "*doc*" $dir && \
echo "-- Running test scripts..." && \
echo -e "\n--- Running in $d ---\n" && \
travis_cargo_run_in $dir && \
tree -I "*doc*" $dir && \
echo "--- Running test scripts ---" && \
for testsh in $(find $dir -iname "*test.sh"); do
run_sh_test $testsh
done && \
echo "-- Done with test scripts..."
echo -e "--- Done with test scripts ---\n\n"
} || true
done