aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2014-03-27 08:53:42 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-03-27 08:53:42 -0700
commit5b2d863e339b3955eafc0588212bd5231a9163a0 (patch)
tree8ef7bc304a3fb041c3e725d713c41b0851bdf8f8 /.travis.yml
parentd679843a39bb4918a08a5aebdf113ac8886a5275 (diff)
downloadspark-5b2d863e339b3955eafc0588212bd5231a9163a0.tar.gz
spark-5b2d863e339b3955eafc0588212bd5231a9163a0.tar.bz2
spark-5b2d863e339b3955eafc0588212bd5231a9163a0.zip
Cut down the granularity of travis tests.
This PR amortizes the cost of downloading all the jars and compiling core across more test cases. In one anecdotal run this change takes the cumulative time down from ~80 minutes to ~40 minutes. Author: Michael Armbrust <michael@databricks.com> Closes #255 from marmbrus/travis and squashes the following commits: 506b22d [Michael Armbrust] Cut down the granularity of travis tests so we can amortize the cost of compilation.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 3 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 617da2dc30..8ebd0d6842 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,18 +20,13 @@
- oraclejdk7
env:
matrix:
- - TEST=sql/test
+ - TEST="scalastyle assembly/assembly"
+ - TEST="catalyst/test sql/test streaming/test mllib/test graphx/test bagel/test"
- TEST=hive/test
- - TEST=catalyst/test
- - TEST=streaming/test
- - TEST=graphx/test
- - TEST=mllib/test
- - TEST=graphx/test
- - TEST=bagel/test
cache:
directories:
- $HOME/.m2
- $HOME/.ivy2
- $HOME/.sbt
script:
- - "sbt ++$TRAVIS_SCALA_VERSION scalastyle $TEST"
+ - "sbt ++$TRAVIS_SCALA_VERSION $TEST"