Skip to content

Commit f702aaf

Browse files
phi-dbqjkbradley
authored andcommitted
Update travis branch to track latest Spark 2.1 release version (graphframes#198)
* Update travis branch to track latest Spark 2.1 release version * update Makefile and build.sbt default
1 parent c4b7501 commit f702aaf

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ env:
1515
matrix:
1616
- PYSPARK_PYTHON=python2 SCALA_VERSION=2.10.6 SPARK_VERSION=1.6.3 SPARK_BUILD="spark-1.6.3-bin-hadoop2.6" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-1.6.3-bin-hadoop2.6.tgz"
1717
- PYSPARK_PYTHON=python2 SCALA_VERSION=2.11.8 SPARK_VERSION=2.0.2 SPARK_BUILD="spark-2.0.2-bin-hadoop2.7" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-2.0.2-bin-hadoop2.7.tgz"
18-
- PYSPARK_PYTHON=python2 SCALA_VERSION=2.11.8 SPARK_VERSION=2.1.0 SPARK_BUILD="spark-2.1.0-bin-hadoop2.7" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-2.1.0-bin-hadoop2.7.tgz"
18+
- PYSPARK_PYTHON=python2 SCALA_VERSION=2.11.8 SPARK_VERSION=2.1.1 SPARK_BUILD="spark-2.1.1-bin-hadoop2.7" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-2.1.1-bin-hadoop2.7.tgz"
1919
- PYSPARK_PYTHON=python3 SCALA_VERSION=2.10.6 SPARK_VERSION=1.6.3 SPARK_BUILD="spark-1.6.3-bin-hadoop2.6" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-1.6.3-bin-hadoop2.6.tgz"
2020
- PYSPARK_PYTHON=python3 SCALA_VERSION=2.11.8 SPARK_VERSION=2.0.2 SPARK_BUILD="spark-2.0.2-bin-hadoop2.7" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-2.0.2-bin-hadoop2.7.tgz"
21-
- PYSPARK_PYTHON=python3 SCALA_VERSION=2.11.8 SPARK_VERSION=2.1.0 SPARK_BUILD="spark-2.1.0-bin-hadoop2.7" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-2.1.0-bin-hadoop2.7.tgz"
21+
- PYSPARK_PYTHON=python3 SCALA_VERSION=2.11.8 SPARK_VERSION=2.1.1 SPARK_BUILD="spark-2.1.1-bin-hadoop2.7" SPARK_BUILD_URL="http://d3kbcqa49mib13.cloudfront.net/spark-2.1.1-bin-hadoop2.7.tgz"
2222

2323
before_install:
2424
- ./bin/download_travis_dependencies.sh

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
all: 2.1.0s2.10 1.6.3 2.0.2 2.1.0
1+
all: 2.1.1s2.10 1.6.3 2.0.2 2.1.1
22

33
clean:
44
rm -rf target/graphframes_*.zip
55

6-
1.6.3 2.0.2 2.1.0:
6+
1.6.3 2.0.2 2.1.1:
77
build/sbt -Dspark.version=$@ spDist
88

9-
2.1.0s2.10:
10-
build/sbt -Dspark.version=2.1.0 -Dscala.version=2.10.6 spDist assembly test
9+
2.1.1s2.10:
10+
build/sbt -Dspark.version=2.1.1 -Dscala.version=2.10.6 spDist assembly test

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Your sbt build file. Guides on how to write one can be found at
22
// http://www.scala-sbt.org/0.13/docs/index.html
33

4-
val sparkVer = sys.props.getOrElse("spark.version", "2.1.0")
4+
val sparkVer = sys.props.getOrElse("spark.version", "2.1.1")
55
val sparkBranch = sparkVer.substring(0, 3)
66
val defaultScalaVer = sparkBranch match {
77
case "1.6" => "2.10.6"

0 commit comments

Comments
 (0)