Skip to content

Commit 5231561

Browse files
committed
HV-2059 Disable build scans where they are unnecessary
1 parent 0aad32f commit 5231561

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ stage('Non-default environments') {
313313
-Denforcer.skip=true \
314314
-DskipTests=true -Dcheckstyle.skip=true \
315315
-DdisableDistributionBuild=true -DdisableDocumentationBuild=true \
316+
-Dscan=false -Dno-build-cache \
316317
"""
317318
}
318319
}

jenkins/nightly/Jenkinsfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ pipeline {
5353
sh """mvn clean verify \
5454
artifact:compare -Dreference.repo=hibernate-maven-central \
5555
-Preproducibility-check \
56-
--fail-at-end
56+
--fail-at-end \
57+
-Dscan=false -Dno-build-cache
5758
"""
5859
}
5960
}
@@ -82,7 +83,8 @@ pipeline {
8283
echo "Run a build with strict JAXP configuration."
8384
sh """mvn clean install \
8485
-Dsurefire.jvm.args.jaxp.strict-args="-Djava.xml.config.file=$jaxpStrictProperties" \
85-
-Djava-version.test.release=23
86+
-Djava-version.test.release=23 \
87+
-Dscan=false -Dno-build-cache
8688
"""
8789
})
8890
}

0 commit comments

Comments
 (0)