зеркало из https://github.com/dotnet/spark.git
Support Spark 2.4.6 (#547)
This commit is contained in:
Родитель
e43a0a465a
Коммит
c8992e0787
|
@ -275,6 +275,15 @@ stages:
|
|||
env:
|
||||
SPARK_HOME: $(Build.BinariesDirectory)\spark-2.4.5-bin-hadoop2.7
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
displayName: 'E2E tests for Spark 2.4.6'
|
||||
inputs:
|
||||
command: test
|
||||
projects: '**/Microsoft.Spark*.E2ETest/*.csproj'
|
||||
arguments: '--configuration $(buildConfiguration)'
|
||||
env:
|
||||
SPARK_HOME: $(Build.BinariesDirectory)\spark-2.4.6-bin-hadoop2.7
|
||||
|
||||
- stage: ForwardCompatibility
|
||||
displayName: E2E Forward Compatibility Tests
|
||||
dependsOn: Build
|
||||
|
@ -526,4 +535,14 @@ stages:
|
|||
projects: '**/Microsoft.Spark*.E2ETest/*.csproj'
|
||||
arguments: '--configuration $(buildConfiguration) --filter $(TestsToFilterOut)'
|
||||
env:
|
||||
SPARK_HOME: $(Build.BinariesDirectory)\spark-2.4.5-bin-hadoop2.7
|
||||
SPARK_HOME: $(Build.BinariesDirectory)\spark-2.4.5-bin-hadoop2.7
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
displayName: 'E2E tests for Spark 2.4.6'
|
||||
inputs:
|
||||
command: test
|
||||
projects: '**/Microsoft.Spark*.E2ETest/*.csproj'
|
||||
arguments: '--configuration $(buildConfiguration) --filter $(TestsToFilterOut)'
|
||||
env:
|
||||
SPARK_HOME: $(Build.BinariesDirectory)\spark-2.4.6-bin-hadoop2.7
|
||||
|
||||
|
|
|
@ -23,5 +23,7 @@ curl -k -L -o spark-2.4.1.tgz https://archive.apache.org/dist/spark/spark-2.4.1/
|
|||
curl -k -L -o spark-2.4.3.tgz https://archive.apache.org/dist/spark/spark-2.4.3/spark-2.4.3-bin-hadoop2.7.tgz && tar xzvf spark-2.4.3.tgz
|
||||
curl -k -L -o spark-2.4.4.tgz https://archive.apache.org/dist/spark/spark-2.4.4/spark-2.4.4-bin-hadoop2.7.tgz && tar xzvf spark-2.4.4.tgz
|
||||
curl -k -L -o spark-2.4.5.tgz https://archive.apache.org/dist/spark/spark-2.4.5/spark-2.4.5-bin-hadoop2.7.tgz && tar xzvf spark-2.4.5.tgz
|
||||
curl -k -L -o spark-2.4.6.tgz https://archive.apache.org/dist/spark/spark-2.4.6/spark-2.4.6-bin-hadoop2.7.tgz && tar xzvf spark-2.4.6.tgz
|
||||
|
||||
endlocal
|
||||
|
||||
endlocal
|
|
@ -34,7 +34,8 @@ import scala.util.Try
|
|||
*/
|
||||
object DotnetRunner extends Logging {
|
||||
private val DEBUG_PORT = 5567
|
||||
private val supportedSparkVersions = Set[String]("2.4.0", "2.4.1", "2.4.3", "2.4.4", "2.4.5")
|
||||
private val supportedSparkVersions =
|
||||
Set[String]("2.4.0", "2.4.1", "2.4.3", "2.4.4", "2.4.5", "2.4.6")
|
||||
|
||||
val SPARK_VERSION = DotnetUtils.normalizeSparkVersion(spark.SPARK_VERSION)
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче