diff --git a/jenkins/Jenkinsfile-blossom.premerge b/jenkins/Jenkinsfile-blossom.premerge index 2f538244539..b6f3e4238dd 100644 --- a/jenkins/Jenkinsfile-blossom.premerge +++ b/jenkins/Jenkinsfile-blossom.premerge @@ -315,18 +315,6 @@ pipeline { container('gpu') { timeout(time: 4, unit: 'HOURS') { // step only timeout for test run sh "$PREMERGE_SCRIPT mvn_verify" - step([$class : 'JacocoPublisher', - execPattern : '**/target/jacoco.exec', - classPattern : 'target/jacoco_classes/', - sourceInclusionPattern: '**/*.java,**/*.scala', - sourcePattern : 'shuffle-plugin/src/main/scala/,' + - 'udf-compiler/src/main/scala/,sql-plugin/src/main/java/,' + - 'sql-plugin/src/main/scala/,shims/spark311/src/main/scala/,' + - 'shims/spark301db/src/main/scala/,shims/spark301/src/main/scala/,' + - 'shims/spark302/src/main/scala/,shims/spark303/src/main/scala/,' + - 'shims/spark304/src/main/scala/,shims/spark312/src/main/scala/,' + - 'shims/spark313/src/main/scala/' - ]) } } } diff --git a/jenkins/spark-premerge-build.sh b/jenkins/spark-premerge-build.sh index a99fe0aad8c..3f2c5305d9a 100755 --- a/jenkins/spark-premerge-build.sh +++ b/jenkins/spark-premerge-build.sh @@ -50,19 +50,9 @@ mvn_verify() { # Here run Python integration tests tagged with 'premerge_ci_1' only, that would help balance test duration and memory # consumption from two k8s pods running in parallel, which executes 'mvn_verify()' and 'ci_2()' respectively. - mvn -U -B $MVN_URM_MIRROR '-Pindividual,pre-merge' clean verify -Dpytest.TEST_TAGS="premerge_ci_1" \ + mvn -U -B $MVN_URM_MIRROR '-Psnapshots,pre-merge' clean verify -Dpytest.TEST_TAGS="premerge_ci_1" \ -Dpytest.TEST_TYPE="pre-commit" -Dpytest.TEST_PARALLEL=4 -Dcuda.version=$CUDA_CLASSIFIER - # The jacoco coverage should have been collected, but because of how the shade plugin - # works and jacoco we need to clean some things up so jacoco will only report for the - # things we care about - mkdir -p target/jacoco_classes/ - FILE=$(ls dist/target/rapids-4-spark_2.12-*.jar | grep -v test | xargs readlink -f) - pushd target/jacoco_classes/ - jar xf $FILE - rm -rf com/nvidia/shaded/ org/openucx/ - popd - # Triggering here until we change the jenkins file rapids_shuffle_smoke_test }