Remove unnecessary variable

This commit is contained in:
Alexandre Archambault 2020-09-14 15:49:49 +02:00
parent 42ac1e48ab
commit 81e4d67fa9
2 changed files with 1 additions and 5 deletions

View File

@ -3,8 +3,6 @@ os: linux
jdk: openjdk8
git:
depth: false # https://stackoverflow.com/a/51727114/3714539
before_install:
- export TRAVIS_SCALA_VERSION=2.12.8
script: scripts/travis.sh
stages:
- name: test

View File

@ -20,7 +20,6 @@ runLmCoursierTests() {
# publishing locally to ensure shading runs fine
./metadata/scripts/with-test-repo.sh ./sbt \
++$TRAVIS_SCALA_VERSION! \
evictionCheck \
compatibilityCheck \
lm-coursier-shaded/publishLocal \
@ -38,13 +37,12 @@ runSbtCoursierTests() {
fi
./metadata/scripts/with-test-repo.sh ./sbt \
++$TRAVIS_SCALA_VERSION \
sbt-coursier-shared/test \
"sbt-coursier/scripted shared-$TEST_GROUP/* $SCRIPTED_EXTRA"
}
runSbtShadingTests() {
./sbt ++$TRAVIS_SCALA_VERSION sbt-shading/scripted
./sbt sbt-shading/scripted
}