diff options
Diffstat (limited to '.run_chisel_tests.sh')
| -rw-r--r-- | .run_chisel_tests.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.run_chisel_tests.sh b/.run_chisel_tests.sh new file mode 100644 index 00000000..e61d370a --- /dev/null +++ b/.run_chisel_tests.sh @@ -0,0 +1,11 @@ +set -e +# Skip chisel tests if the commit message says to +if [[ $TRAVIS_COMMIT_MESSAGE == *"[skip chisel tests]"* ]]; then + exit 0 +else + git clone https://github.com/ucb-bar/chisel3.git + mkdir -p chisel3/lib + cp utils/bin/firrtl.jar chisel3/lib + cd chisel3 + sbt clean test +fi |
