Compare commits

...

3 Commits

Author SHA1 Message Date
Xiangrui Meng
7f454dffec specify scala version in travis 2018-06-14 10:20:19 -07:00
Lu WANG
322efe9343 rm scala 2.10 2018-06-14 10:10:20 -07:00
Lu WANG
cb9479a58e spark-sql-perf with spark2.3 2018-06-14 09:38:20 -07:00
3 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,6 @@
language: scala
scala:
- 2.11.8
sudo: false
jdk:
oraclejdk8
@ -6,4 +8,4 @@ cache:
directories:
- $HOME/.ivy2
env:
- DBC_USERNAME="" DBC_PASSWORD="" DBC_URL=""
- DBC_USERNAME="" DBC_PASSWORD="" DBC_URL=""

View File

@ -5,5 +5,5 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
VERSION=`git -C $DIR/../ tag | tail -n 1 | cut -c 2-`
ARGS="sparkPackage com.databricks:spark-sql-perf_2.10:$VERSION com.databricks.spark.sql.perf.RunBenchmark $@"
build/sbt "$ARGS"
ARGS="sparkPackage com.databricks:spark-sql-perf_2.11:$VERSION com.databricks.spark.sql.perf.RunBenchmark $@"
build/sbt "$ARGS"

View File

@ -7,14 +7,14 @@ organization := "com.databricks"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.10.6", "2.11.8")
crossScalaVersions := Seq("2.11.8")
sparkPackageName := "databricks/spark-sql-perf"
// All Spark Packages need a license
licenses := Seq("Apache-2.0" -> url("http://opensource.org/licenses/Apache-2.0"))
sparkVersion := "2.2.0"
sparkVersion := "2.3.0"
sparkComponents ++= Seq("sql", "hive", "mllib")