Chromium Code Reviews| Index: tool/travis.sh |
| diff --git a/tool/travis.sh b/tool/travis.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..d718f5d8f645cd786b8df47aa602fa6283cf58fb |
| --- /dev/null |
| +++ b/tool/travis.sh |
| @@ -0,0 +1,16 @@ |
| +#!/bin/bash |
| + |
| +# Fast fail the script on failures. |
| +set -e |
| + |
| +dart --checked test/test_all.dart |
| + |
| +# Install dart_coveralls; gather and send coverage data. |
| +if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then |
| + pub global activate dart_coveralls |
|
nweiz
2015/03/02 19:08:42
Can we put this in a before_install script? http:/
kevmoo
2015/03/03 18:12:18
Done.
|
| + pub global run dart_coveralls report \ |
| + --token $COVERALLS_TOKEN \ |
| + --retry 2 \ |
| + --exclude-test-files \ |
| + test/test_all.dart |
| +fi |