Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: packages/when/drone.sh

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/when/README.md ('k') | packages/when/example/foo.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env bash
2 set -o xtrace
3
4 pub get
5 dart test/test_when.dart
6
7 # TODO: dartanalyzer on all libraries
8
9 # Install dart_coveralls; gather and send coverage data.
10 if [ "$REPO_TOKEN" ]; then
11 export PATH="$PATH":"~/.pub-cache/bin"
12
13 echo
14 echo "Installing dart_coveralls"
15 pub global activate dart_coveralls
16
17 echo
18 echo "Running code coverage report"
19 # --debug for verbose logging
20 pub global run dart_coveralls report --token $REPO_TOKEN --retry 3 test/test_w hen.dart
21 fi
OLDNEW
« no previous file with comments | « packages/when/README.md ('k') | packages/when/example/foo.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698