aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Koenig2016-12-06 14:31:54 -0800
committerGitHub2016-12-06 14:31:54 -0800
commitef4b9e59be86bd83c6c815441cb9c8621d49c89f (patch)
treea7af5374aa2c99956c31ef66a0df3dcc37a9885d
parentb928cd95b5396ca383d81b960bb4e5dfc781ef8d (diff)
Update Travis build configuration (#388)
* Copy firrtl.jar to chisel3/lib to ensure correct version of Firrtl is used by chisel3 tests * Remove make commands in favor staying in current sbt session and warmed JVM
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 462338ff..67cb20e4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,8 +29,9 @@ script:
# FIRRTL Tests
- verilator --version
- cd $TRAVIS_BUILD_DIR
- - sbt clean test publish-local
- - make clean build-scala regress
+ - sbt clean test assembly publish-local
+ - mkdir -p chisel3/lib
+ - cp utils/bin/firrtl.jar chisel3/lib
# Chisel 3 Tests
- cd chisel3
- sbt clean test