Skip to content

Commit 324b859

Browse files
committed
Abris #239 support for Spark 3.2
1 parent 9187a83 commit 324b859

5 files changed

+14
-68
lines changed

.github/workflows/build-scala2.12-spark2.4.yml

-21
This file was deleted.

.github/workflows/build-scala2.12-spark3.0.yml

-21
This file was deleted.

.github/workflows/build-scala2.12-spark3.1.yml

-21
This file was deleted.

.github/workflows/build-scala2.11-spark2.4.yml .github/workflows/build-scala2.12-spark3.2.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Build Scala 2.11, Spark 2.4
1+
name: Build Scala 2.12, Spark 3.2
22

33
on:
44
push:
5-
branches: [ master, branch-3.2 ]
5+
branches: [ master ]
66
pull_request:
7-
branches: [ master, branch-3.2 ]
7+
branches: [ master ]
88

99
jobs:
1010
build:
@@ -18,4 +18,4 @@ jobs:
1818
with:
1919
java-version: 1.8
2020
- name: Run tests
21-
run: mvn clean test -Plicense-check,spark-2.4,scala-2.11
21+
run: mvn clean test -Plicense-check,spark-3.2,scala-2.12

pom.xml

+10-1
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,15 @@
6363

6464
<scala_2.11.version>2.11.12</scala_2.11.version>
6565
<scala_2.12.version>2.12.10</scala_2.12.version>
66+
<scala_2.13.version>2.13.7</scala_2.13.version>
67+
6668

6769
<!-- Controlled by `scala-cross-build` plugin -->
6870
<scala.version>2.12.10</scala.version>
6971
<scala.compat.version>2.12</scala.compat.version>
7072

7173
<!--Platforms-->
72-
<spark.version>${spark-24.version}</spark.version>
74+
<spark.version>${spark-32.version}</spark.version>
7375
<spark.avro.version>${spark.version}</spark.avro.version>
7476
<kafka.spark.version>0-10</kafka.spark.version>
7577
<confluent.version>5.3.4</confluent.version>
@@ -330,6 +332,13 @@
330332
<scala.version>${scala_2.12.version}</scala.version>
331333
</properties>
332334
</profile>
335+
<profile>
336+
<id>scala-2.13</id>
337+
<properties>
338+
<scala.compat.version>2.13</scala.compat.version>
339+
<scala.version>${scala_2.13.version}</scala.version>
340+
</properties>
341+
</profile>
333342

334343
<!-- Spark profiles -->
335344
<profile>

0 commit comments

Comments
 (0)