aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorhyukjinkwon <gurwls223@gmail.com>2017-02-14 11:00:40 -0800
committerFelix Cheung <felixcheung@apache.org>2017-02-14 11:00:40 -0800
commitf776e3b42a4e8078a98ac462c0b0a7f5df98fc45 (patch)
treee1ac15caa312fae481396ec8140b3557ba20d30b /dev
parent7b64f7aa03a49adca5fcafe6fff422823b587514 (diff)
downloadspark-f776e3b42a4e8078a98ac462c0b0a7f5df98fc45.tar.gz
spark-f776e3b42a4e8078a98ac462c0b0a7f5df98fc45.tar.bz2
spark-f776e3b42a4e8078a98ac462c0b0a7f5df98fc45.zip
[SPARK-19571][R] Fix SparkR test break on Windows via AppVeyor
## What changes were proposed in this pull request? It seems wintuils for Hadoop 2.6.5 not exiting for now in https://github.com/steveloughran/winutils This breaks the tests in SparkR on Windows so this PR proposes to use winutils built by Hadoop 2.6.4 for now. ## How was this patch tested? Manually via AppVeyor **Before** https://ci.appveyor.com/project/spark-test/spark/build/627-r-test-break **After** https://ci.appveyor.com/project/spark-test/spark/build/629-r-test-break Author: hyukjinkwon <gurwls223@gmail.com> Closes #16927 from HyukjinKwon/spark-r-windows-break.
Diffstat (limited to 'dev')
-rw-r--r--dev/appveyor-install-dependencies.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/appveyor-install-dependencies.ps1 b/dev/appveyor-install-dependencies.ps1
index 5a729674c3..1350095a94 100644
--- a/dev/appveyor-install-dependencies.ps1
+++ b/dev/appveyor-install-dependencies.ps1
@@ -95,7 +95,7 @@ $env:MAVEN_OPTS = "-Xmx2g -XX:MaxPermSize=512M -XX:ReservedCodeCacheSize=512m"
Pop-Location
# ========================== Hadoop bin package
-$hadoopVer = "2.6.5"
+$hadoopVer = "2.6.4"
$hadoopPath = "$tools\hadoop"
if (!(Test-Path $hadoopPath)) {
New-Item -ItemType Directory -Force -Path $hadoopPath | Out-Null