Skip to content

Commit

Permalink
Revert "Quarkus 3: Disable kie-jpmml-integration calls (#5489)" (#5490
Browse files Browse the repository at this point in the history
)

This reverts commit 977bcfb.
  • Loading branch information
radtriste committed Aug 28, 2023
1 parent 3de05e0 commit 486baea
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 22 deletions.
7 changes: 0 additions & 7 deletions .ci/jenkins/project/Jenkinsfile.nightly
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ pipeline {
}
}
stage('Build & Deploy KIE jpmml integration') {
when {
expression { return isMainStream() }
}
steps {
script {
def buildParams = getDefaultBuildParams()
Expand Down Expand Up @@ -172,7 +169,3 @@ void addBooleanParam(List buildParams, String key, boolean value) {
String getBuildBranch() {
return env.GIT_BRANCH_NAME
}

boolean isMainStream() {
return env.STREAM == 'main'
}
9 changes: 1 addition & 8 deletions .ci/jenkins/project/Jenkinsfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ pipeline {
}

stage('Build & Deploy KIE jpmml integration') {
when {
expression { return isMainStream() }
}
steps {
script {
def buildParams = getDefaultBuildParams()
Expand Down Expand Up @@ -131,7 +128,7 @@ pipeline {

stage('Promote KIE jpmml integration') {
when {
expression { return isMainStream() && isJobConsideredOk(getDeployJobName(kieJpmmlIntegrationRepo)) }
expression { return isJobConsideredOk(getDeployJobName(kieJpmmlIntegrationRepo)) }
}
steps {
script {
Expand Down Expand Up @@ -410,7 +407,3 @@ boolean areArtifactsReleased() {
void setArtifactsReleased() {
setReleasePropertyIfneeded(ARTIFACTS_RELEASE_STAGE, true)
}

boolean isMainStream() {
return env.STREAM == 'main'
}
7 changes: 0 additions & 7 deletions .ci/jenkins/project/Jenkinsfile.setup-branch
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ pipeline {
}

stage('Init KIE jpmml integration') {
when {
expression { return isMainStream() }
}
steps {
script {
def buildParams = getDefaultBuildParams()
Expand Down Expand Up @@ -197,7 +194,3 @@ String getVersionFromReleaseBranch(String releaseBranch, int microVersion = 0, S
error 'Cannot parse given branch as a release branch, aka [M].[m].x ...'
}
}

boolean isMainStream() {
return env.STREAM == 'main'
}

0 comments on commit 486baea

Please sign in to comment.