You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by fe...@apache.org on 2017/02/14 19:00:45 UTC

spark git commit: [SPARK-19571][R] Fix SparkR test break on Windows via AppVeyor

Repository: spark
Updated Branches:
  refs/heads/master 7b64f7aa0 -> f776e3b42


[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 <gu...@gmail.com>

Closes #16927 from HyukjinKwon/spark-r-windows-break.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f776e3b4
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f776e3b4
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f776e3b4

Branch: refs/heads/master
Commit: f776e3b42a4e8078a98ac462c0b0a7f5df98fc45
Parents: 7b64f7a
Author: hyukjinkwon <gu...@gmail.com>
Authored: Tue Feb 14 11:00:40 2017 -0800
Committer: Felix Cheung <fe...@apache.org>
Committed: Tue Feb 14 11:00:40 2017 -0800

----------------------------------------------------------------------
 dev/appveyor-install-dependencies.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/f776e3b4/dev/appveyor-install-dependencies.ps1
----------------------------------------------------------------------
diff --git a/dev/appveyor-install-dependencies.ps1 b/dev/appveyor-install-dependencies.ps1
index 5a72967..1350095 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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org