workaround memory overflow by reducing parallelization (#1797)

* Use trusty image

* Temporary: eliminate parallelization to make Travis runs pass despite #1799

* revert trusty change
diff --git a/tool/grind.dart b/tool/grind.dart
index fd71b89..91f5505 100644
--- a/tool/grind.dart
+++ b/tool/grind.dart
@@ -40,7 +40,7 @@
 /// Run no more than the number of processors available in parallel.
 final MultiFutureTracker testFutures = new MultiFutureTracker(
     Platform.environment.containsKey('TRAVIS')
-        ? 2
+        ? 1
         : Platform.numberOfProcessors);
 
 // Directory.systemTemp is not a constant.  So wrap it.