Skip to content

Commit 7b79661

Browse files
authored
Test: Bump Kyuubi TPC-DS connector 1.8.0 (#277)
1 parent 8038636 commit 7b79661

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/tpcds.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
spark: [ 3.3, 3.4 ]
34+
scala: [ 2.12, 2.13 ]
3435
steps:
3536
- uses: actions/checkout@v3
3637
- uses: actions/setup-java@v3
@@ -41,6 +42,7 @@ jobs:
4142
- run: >-
4243
./gradlew clean slowTest --no-daemon --refresh-dependencies
4344
-Dspark_binary_version=${{ matrix.spark }}
45+
-Dscala_binary_version=${{ matrix.scala }}
4446
-PmavenCentralMirror=https://maven-central.storage-download.googleapis.com/maven2/
4547
- name: Upload test logs
4648
if: failure()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ commons_codec_version=1.16.0
4848
jakarta_annotation_api_version=1.3.5
4949

5050
# Test only
51-
kyuubi_version=1.7.1
51+
kyuubi_version=1.8.0
5252
testcontainers_scala_version=0.41.0
5353
scalatest_version=3.2.15
5454
flexmark_version=0.62.2

spark-3.3/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ project(":clickhouse-spark-it-${spark_binary_version}_$scala_binary_version") {
8080

8181
testImplementation("com.clickhouse:clickhouse-jdbc:$clickhouse_jdbc_version:all") { transitive = false }
8282

83-
if (scala_binary_version == "2.12") {
84-
testImplementation "org.apache.kyuubi:kyuubi-spark-connector-tpcds_${scala_binary_version}:$kyuubi_version"
85-
}
83+
testImplementation "org.apache.kyuubi:kyuubi-spark-connector-tpcds_${scala_binary_version}:$kyuubi_version"
8684
}
8785

8886
test {

spark-3.4/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ project(":clickhouse-spark-it-${spark_binary_version}_$scala_binary_version") {
8080

8181
testImplementation("com.clickhouse:clickhouse-jdbc:$clickhouse_jdbc_version:all") { transitive = false }
8282

83-
if (scala_binary_version == "2.12") {
84-
testImplementation "org.apache.kyuubi:kyuubi-spark-connector-tpcds_${scala_binary_version}:$kyuubi_version"
85-
}
83+
testImplementation "org.apache.kyuubi:kyuubi-spark-connector-tpcds_${scala_binary_version}:$kyuubi_version"
8684
}
8785

8886
test {

0 commit comments

Comments
 (0)