Don't run the full scripted test suite for sbt 1.0.0-M6

Currently taking too long on both CIs...
This commit is contained in:
Alexandre Archambault 2017-06-16 18:16:47 +02:00
parent 3c30c9762c
commit 4b42181dd8
2 changed files with 6 additions and 3 deletions

View File

@ -35,7 +35,7 @@ test_script:
- sbt ++2.12.1 testsJVM/test testsJVM/it:test # Would node be around for testsJS/test?
- sbt ++2.11.11 testsJVM/test testsJVM/it:test
- sbt ++2.10.6 testsJVM/test testsJVM/it:test
- sbt ++2.12.1 "sbt-coursier/scripted sbt-coursier/*" sbt-coursier/publishLocal "sbt-shading/scripted sbt-shading/*" # for sbt 1.0
- sbt ++2.12.1 "sbt-coursier/scripted sbt-coursier/simple" sbt-coursier/publishLocal "sbt-shading/scripted sbt-shading/*" # for sbt 1.0
- sbt ++2.10.6 "sbt-coursier/scripted sbt-coursier/*" "sbt-coursier/scripted sbt-coursier-0.13/*" sbt-coursier/publishLocal "sbt-shading/scripted sbt-shading/*" "sbt-shading/scripted sbt-shading-0.13/*" # for sbt 0.13
cache:
- C:\Users\appveyor\.ivy2\cache

View File

@ -84,10 +84,13 @@ is212() {
runSbtCoursierTests() {
addPgpKeys
sbt ++$SCALA_VERSION sbt-plugins/publishLocal "sbt-coursier/scripted sbt-coursier/*" sbt-pgp-coursier/scripted
sbt ++$SCALA_VERSION sbt-plugins/publishLocal
if [ "$SCALA_VERSION" = "2.10" ]; then
sbt ++$SCALA_VERSION "sbt-coursier/scripted sbt-coursier-0.13/*"
sbt ++$SCALA_VERSION "sbt-coursier/scripted sbt-coursier/*" "sbt-coursier/scripted sbt-coursier-0.13/*"
else
sbt ++$SCALA_VERSION "sbt-coursier/scripted sbt-coursier/simple" # full scripted suite currently taking too long on Travis CI...
fi
sbt ++$SCALA_VERSION sbt-pgp-coursier/scripted
}
runSbtShadingTests() {