Skip to content

Commit

Permalink
[SPARK-13194][BUILD] Update release audit tools to use Scala 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
lresende committed Feb 4, 2016
1 parent dee801a commit 72e9df7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions dev/audit-release/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Test Application Builds
This directory includes test applications which are built when auditing releases. You can
run them locally by setting appropriate environment variables.
Test Application Builds
=======================

This directory includes test applications which are built when auditing releases. You can run them locally by setting appropriate environment variables.

```
$ cd sbt_app_core
$ SCALA_VERSION=2.10.5 \
$ SCALA_VERSION=2.11.7 \
SPARK_VERSION=1.0.0-SNAPSHOT \
SPARK_RELEASE_REPOSITORY=file:///home/patrick/.ivy2/local \
sbt run
Expand Down
4 changes: 2 additions & 2 deletions dev/audit-release/audit_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
RELEASE_KEY = "XXXXXXXX" # Your 8-digit hex
RELEASE_REPOSITORY = "https://repository.apache.org/content/repositories/orgapachespark-1033"
RELEASE_VERSION = "1.1.1"
SCALA_VERSION = "2.10.5"
SCALA_BINARY_VERSION = "2.10"
SCALA_VERSION = "2.11.7"
SCALA_BINARY_VERSION = "2.11"

# Do not set these
LOG_FILE_NAME = "spark_audit_%s" % time.strftime("%h_%m_%Y_%I_%M_%S")
Expand Down

0 comments on commit 72e9df7

Please sign in to comment.