Skip to content

Commit

Permalink
fix(build): try to eliminate build flakes by running dartstyle:format…
Browse files Browse the repository at this point in the history
… sequentially
  • Loading branch information
alexeagle committed Mar 26, 2015
1 parent 5306b6d commit dd235f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,10 @@ gulp.task('build/packages.dart', function(done) {
runSequence(
['build/transpile.dart.ts2dart', 'build/transpile.dart', 'build/html.dart', 'build/copy.dart', 'build/multicopy.dart'],
'tests/transform.dart',
['build/format.dart.ts2dart', 'build/format.dart'],
// the two format steps don't need to be sequential, but we have seen flakiness in
// dartstyle:format with connecting to localhost.
'build/format.dart.ts2dart',
'build/format.dart',
'build/pubspec.dart',
done
);
Expand Down

0 comments on commit dd235f3

Please sign in to comment.