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

Side by Side Diff: packages/which/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/which/README.md ('k') | packages/which/lib/src/candidate_paths.dart » ('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
6 # TODO: Remove once https://github.com/drone/drone/issues/821 is fixed.
7 export PATH="$PATH":"~/.pub-cache/bin"
8
9 # Run tests.
10 pub global activate test_runner
11 test_runner -v
12
13 # TODO: dartanalyzer on all libraries
14
15 # Install dart_coveralls; gather and send coverage data.
16 if [ "$REPO_TOKEN" ]; then
17 pub global activate dart_coveralls
18 dart_coveralls report --token $REPO_TOKEN --retry 3 test/test.dart
19 fi
OLDNEW
« no previous file with comments | « packages/which/README.md ('k') | packages/which/lib/src/candidate_paths.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698