Skip to content

Commit

Permalink
Remove cross-scala version stuff from Travis CI config
Browse files Browse the repository at this point in the history
We only have one scala version anyway…
  • Loading branch information
alexarchambault committed May 30, 2020
1 parent 60e8c01 commit 8185b64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ set -e

case "${MASTER:-"local"}" in
local)
./sbt ++$TRAVIS_SCALA_VERSION'!' publishLocal test mimaReportBinaryIssues ;;
./sbt publishLocal test mimaReportBinaryIssues ;;
local-distrib)
./with-spark-home.sh ./sbt ++$TRAVIS_SCALA_VERSION'!' publishLocal local-spark-distrib-tests/test ;;
./with-spark-home.sh ./sbt publishLocal local-spark-distrib-tests/test ;;
standalone)
./with-spark-home.sh ./sbt-with-standalone-cluster.sh ++$TRAVIS_SCALA_VERSION'!' publishLocal standalone-tests/test ;;
./with-spark-home.sh ./sbt-with-standalone-cluster.sh publishLocal standalone-tests/test ;;
yarn)
./sbt-in-docker-with-yarn-cluster.sh -batch ++$TRAVIS_SCALA_VERSION'!' publishLocal yarn-tests/test ;;
./sbt-in-docker-with-yarn-cluster.sh -batch publishLocal yarn-tests/test ;;
yarn-distrib)
./with-spark-home.sh ./sbt-in-docker-with-yarn-cluster.sh -batch ++$TRAVIS_SCALA_VERSION'!' publishLocal yarn-spark-distrib-tests/test ;;
./with-spark-home.sh ./sbt-in-docker-with-yarn-cluster.sh -batch publishLocal yarn-spark-distrib-tests/test ;;
*)
echo "Unrecognized master type $MASTER"
exit 1
Expand Down
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
language: java
jdk: openjdk8
before_install:
- export TRAVIS_SCALA_VERSION=2.12.10
script: ./.travis.sh
cache:
directories:
Expand Down

0 comments on commit 8185b64

Please sign in to comment.