diff --git a/.travis.yml b/.travis.yml index 75061c45b..cbe8bcc2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,12 @@ stages: if: (branch = master AND type = push) OR (tag IS present) jobs: include: - - env: SBT_COURSIER=1 SBT_COURSIER_TEST_GROUP=1 - - env: SBT_COURSIER=1 SBT_COURSIER_TEST_GROUP=2 + - env: SBT_COURSIER=1 TEST_GROUP=1 + - env: SBT_COURSIER=1 TEST_GROUP=2 - env: SBT_SHADING=1 - env: SBT_PGP_COURSIER=1 - - env: LM_COURSIER=1 + - env: LM_COURSIER=1 TEST_GROUP=1 + - env: LM_COURSIER=1 TEST_GROUP=2 - stage: release script: sbt ci-release branches: diff --git a/scripts/travis.sh b/scripts/travis.sh index 1cc647126..05991d92b 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -23,14 +23,14 @@ runLmCoursierTests() { ./metadata/scripts/with-test-repo.sh sbt \ ++$TRAVIS_SCALA_VERSION \ lm-coursier/test \ - "sbt-lm-coursier/scripted shared-1/* shared-2/*" + "sbt-lm-coursier/scripted shared-$TEST_GROUP/*" } runSbtCoursierTests() { ./metadata/scripts/with-test-repo.sh sbt \ ++$TRAVIS_SCALA_VERSION \ sbt-coursier/test \ - "sbt-coursier/scripted shared-$SBT_COURSIER_TEST_GROUP/* sbt-coursier-group-$SBT_COURSIER_TEST_GROUP/*" + "sbt-coursier/scripted shared-$TEST_GROUP/* sbt-coursier-group-$TEST_GROUP/*" } runSbtShadingTests() {