Specify sbt scala version
This commit is contained in:
parent
803a46fd7f
commit
57c5576151
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue