Specify sbt scala version

This commit is contained in:
Taro L. Saito 2017-01-19 21:35:19 -08:00
parent 803a46fd7f
commit 57c5576151
1 changed files with 3 additions and 3 deletions

View File

@ -16,10 +16,10 @@ jdk:
script:
- if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
make native-all && ./sbt "; test; publish";
make native-all && sbt ++$TRAVIS_SCALA_VERSION "; test; publish";
else
make linux64 && ./sbt test;
make linux64 && sbt ++$TRAVIS_SCALA_VERSION test;
fi;
else
./sbt test;
sbt ++$TRAVIS_SCALA_VERSION test;
fi