aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack2017-06-29 12:32:36 -0700
committerJack2017-06-29 14:47:46 -0700
commitc89ec28ea0d283f914794a474ac213093b2440df (patch)
tree05a0440b81e3482156f796daec64ed83c15bb1c2
parentf17ba552bb0dc562ec77b23d0ce8b8e27454b92e (diff)
[Travis] Explicitly limit chisel tests parallelism to 2
-rw-r--r--.run_chisel_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.run_chisel_tests.sh b/.run_chisel_tests.sh
index e61d370a..28a08b5d 100644
--- a/.run_chisel_tests.sh
+++ b/.run_chisel_tests.sh
@@ -7,5 +7,5 @@ else
mkdir -p chisel3/lib
cp utils/bin/firrtl.jar chisel3/lib
cd chisel3
- sbt clean test
+ sbt "set concurrentRestrictions in Global += Tags.limit(Tags.Test, 2)" clean test
fi