INFRA-549: Commented out Sonatype checks during regression builds for now. (#6528)

Commented out Sonatype checks during regression builds for now.
This commit is contained in:
Jonathan Locke 2020-07-30 11:27:45 +01:00 committed by GitHub
parent 5f8d70f5e3
commit 530c5eadf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -53,7 +53,13 @@ pipeline {
}
stages {
/*
* Temporarily disable Sonatype checks for regression builds
*/
stage('Sonatype Check') {
when {
expression { isReleaseTag }
}
steps {
sh "./gradlew --no-daemon clean jar"
script {

View File

@ -55,7 +55,13 @@ pipeline {
}
stages {
/*
* Temporarily disable Sonatype checks for regression builds
*/
stage('Sonatype Check') {
when {
expression { isReleaseTag }
}
steps {
sh "./gradlew --no-daemon clean jar"
script {