Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BXMSPROD-2156] add kogito/drools versions for OSL main in job-dsls/jobs/prod/prod_cron_meta_nightly_pipeline.groovy #1545

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion job-dsls/jobs/prod/prod_cron_meta_nightly_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def KOGITO_BLUE_NEXT_PRODUCT_VERSION='1.13.2.blue'
def KOGITO_BLUE_NEXT_PRODUCT_BRANCH='1.13.x-blue'
def KOGITO_BLUE_NEXT_PRODUCT_CONFIG_BRANCH="kogito/1.13.x-blue"

def SERVERLESS_LOGIC_NEXT_PRODUCT_VERSION='999.0.0'
Copy link
Member Author

@rgdoliveira rgdoliveira Jan 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is now required because the upstream version is 999-SNAPSHOT (without minor and micro) and before it used to be 2.0.0-SNAPSHOT, so we need this otherwise PME is not able to properly deal with the versions in the nightly.

def SERVERLESS_LOGIC_KOGITO_NEXT_PRODUCT_VERSION=SERVERLESS_LOGIC_NEXT_PRODUCT_VERSION
def SERVERLESS_LOGIC_DROOLS_NEXT_PRODUCT_VERSION=SERVERLESS_LOGIC_NEXT_PRODUCT_VERSION
def SERVERLESS_LOGIC_NEXT_PRODUCT_BRANCH='main'
def SERVERLESS_LOGIC_NEXT_PRODUCT_CONFIG_BRANCH="master"

Expand Down Expand Up @@ -84,7 +87,7 @@ pipeline{

// Openshift Serverless Logic
//{serverlessLogicNightlyStage(SERVERLESS_LOGIC_CURRENT_PRODUCT_BRANCH, SERVERLESS_LOGIC_CURRENT_PRODUCT_CONFIG_BRANCH, SERVERLESS_LOGIC_CURRENT_PRODUCT_VERSION, SERVERLESS_LOGIC_KOGITO_CURRENT_PRODUCT_VERSION, SERVERLESS_LOGIC_DROOLS_CURRENT_PRODUCT_VERSION)}
${serverlessLogicNightlyStage(SERVERLESS_LOGIC_NEXT_PRODUCT_BRANCH, SERVERLESS_LOGIC_NEXT_PRODUCT_CONFIG_BRANCH)}
${serverlessLogicNightlyStage(SERVERLESS_LOGIC_NEXT_PRODUCT_BRANCH, SERVERLESS_LOGIC_NEXT_PRODUCT_CONFIG_BRANCH, SERVERLESS_LOGIC_NEXT_PRODUCT_VERSION, SERVERLESS_LOGIC_KOGITO_NEXT_PRODUCT_VERSION, SERVERLESS_LOGIC_DROOLS_NEXT_PRODUCT_VERSION)}

// RHBOP
//{rhbopNightlyStage(RHBOP_NEXT_PRODUCT_BRANCH, RHBOP_NEXT_PRODUCT_CONFIG_BRANCH)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Constants {
static final String REPORT_BRANCH = '7.x'
static final String BUILD_DATE = ''
static final String MAIN_BRANCH_PROD_VERSION = '7.14.0'
static final String KOGITO_MAIN_BRANCH_PROD_VERSION = '2.0.0'
static final String KOGITO_MAIN_BRANCH_PROD_VERSION = '999.0.0'
static final String RHBOP_MAIN_BRANCH_PROD_VERSION = '8.30.0'
static final String NEXT_PROD_VERSION = '7.13.5'
static final String BAMOE_NEXT_PROD_VERSION = '8.0.4'
Expand Down