Merge pull request #584 from coursier/tweak-ci

Tweak CI
This commit is contained in:
Alexandre Archambault 2017-06-17 19:09:18 +02:00 committed by GitHub
commit de7afdaa24
3 changed files with 12 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

@ -0,0 +1,6 @@
package coursier.cli
// dummy app to keep proguard quiet in 2.12
object Coursier {
def main(args: Array[String]): Unit = {}
}

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() {