blob: e61d370abb8f5bebf7bb3f4e1a3e970c20bd6af7 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|