@@ -93,7 +93,7 @@ pipeline {
9393 // 'name' and 'value' only supprt literal string in the declarative Jenkins
9494 // Refer to Jenkins issue https://issues.jenkins.io/browse/JENKINS-62127
9595 name ' DB_RUNTIME'
96- values ' 12.2 ' , ' 13.3' , ' 14.3' , ' 17.3'
96+ values ' 13.3' , ' 14.3' , ' 17.3'
9797 }
9898 }
9999 stages {
@@ -184,16 +184,13 @@ void databricksBuild() {
184184 }
185185 }
186186
187- // TODO: Temporarily skip tests on Databricks 17.3 until the test failures are fixed
188- if (env. DB_RUNTIME != ' 17.3' ) {
189- stage(" Test agaist $SPARK_MAJOR DB" ) {
190- dbStep = ' TEST'
191- withCredentials([file(credentialsId : ' SPARK_DATABRICKS_PRIVKEY' , variable : ' DATABRICKS_PRIVKEY' )]) {
192- def TEST_PARAMS = DbUtils . getParameters(this , dbStep, " -c $CLUSTER_ID " )
193- // Get built tar from the path "$testArgs" on Databricks cluster
194- // Refer to https://github.com/NVIDIA/spark-rapids/pull/11788/files#diff-db28879431d57d0e454a2c7ee89fdda9abdec463c61771333d6a6565bf96c062R52-R55
195- sh " python3 ./jenkins/databricks/run-tests.py $TEST_PARAMS $testArgs "
196- }
187+ stage(" Test agaist $SPARK_MAJOR DB" ) {
188+ dbStep = ' TEST'
189+ withCredentials([file(credentialsId : ' SPARK_DATABRICKS_PRIVKEY' , variable : ' DATABRICKS_PRIVKEY' )]) {
190+ def TEST_PARAMS = DbUtils . getParameters(this , dbStep, " -c $CLUSTER_ID " )
191+ // Get built tar from the path "$testArgs" on Databricks cluster
192+ // Refer to https://github.com/NVIDIA/spark-rapids/pull/11788/files#diff-db28879431d57d0e454a2c7ee89fdda9abdec463c61771333d6a6565bf96c062R52-R55
193+ sh " python3 ./jenkins/databricks/run-tests.py $TEST_PARAMS $testArgs "
197194 }
198195 }
199196 } finally {
0 commit comments