Skip to content

Commit 6237a37

Browse files
committed
Remove Spark 3.1.2 from CI build, make Spark 3.2.0 default Maven build
1 parent 6eee5ce commit 6237a37

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
scala: [ 2.11.12, 2.12.15 ]
16-
spark: [ 2.4.8, 3.1.2, 3.2.0 ]
16+
spark: [ 2.4.8, 3.2.0 ]
1717
exclude:
18-
- scala: 2.11.12
19-
spark: 3.1.2
2018
- scala: 2.11.12
2119
spark: 3.2.0
2220
name: Spark ${{matrix.spark}} on Scala ${{matrix.scala}}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ Creating an uber jar for Cobrix is very easy. Just clone the repository and run
271271
sbt ++2.11.12 assembly -DSPARK_VERSION=2.4.8
272272
sbt ++2.12.15 assembly -DSPARK_VERSION=2.4.8
273273
sbt ++2.12.15 assembly -DSPARK_VERSION=3.1.2
274+
sbt ++2.12.15 assembly -DSPARK_VERSION=3.2.0
274275
```
275276

276277
You can collect the uber jar of `spark-cobol` either at

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
<!-- Frameworks and libraries -->
110110
<scala.version>2.12.15</scala.version>
111111
<scala.compat.version>2.12</scala.compat.version>
112-
<spark.version>3.1.2</spark.version>
112+
<spark.version>3.2.0</spark.version>
113113
<scalatest.version>3.0.1</scalatest.version>
114114
<specs.version>2.4.16</specs.version>
115115
<guava.version>15.0</guava.version>

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object Dependencies {
2727
private val scalatestVersion = "3.0.1"
2828

2929
private val defaultSparkVersionForScala211 = "2.4.8"
30-
private val defaultSparkVersionForScala212 = "3.1.2"
30+
private val defaultSparkVersionForScala212 = "3.2.0"
3131

3232
def sparkFallbackVersion(scalaVersion: String): String = {
3333
if (scalaVersion.startsWith("2.11")) {

0 commit comments

Comments
 (0)