Skip to content

Conversation

@rjrudin
Copy link
Contributor

@rjrudin rjrudin commented Nov 18, 2025

No description provided.

@rjrudin rjrudin requested a review from anu3990 as a code owner November 18, 2025 11:58
Copilot AI review requested due to automatic review settings November 18, 2025 11:58
@github-actions
Copy link

github-actions bot commented Nov 18, 2025

Copyright Validation Results
Total: 1 | Passed: 0 | Failed: 0 | Skipped: 1 | at: 2025-11-18 12:14:49 UTC | commit: ec9e8f6

⏭️ Skipped (Excluded) Files

  • Jenkinsfile

✅ All files have valid copyright headers!

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR parameterizes MarkLogic image tags in the Jenkinsfile to enable dynamic specification of Docker images for regression testing, replacing hardcoded stage definitions with a flexible configuration approach.

Key changes:

  • Introduced MARKLOGIC_IMAGE_TAGS parameter for comma-delimited image tag specification
  • Replaced multiple hardcoded regression stages with a single parameterized stage that dynamically creates parallel test stages
  • Removed commented-out reverse proxy regression stage

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Jenkinsfile Outdated
steps {
script {
def imageTags = params.MARKLOGIC_IMAGE_TAGS.split(',')
def imagePrefix = 'ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/' def parallelStages = [:]
Copy link

Copilot AI Nov 18, 2025

Choose a reason for hiding this comment

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

The line contains two variable declarations without proper separation. The def parallelStages = [:] declaration should be on its own line for better readability.

Suggested change
def imagePrefix = 'ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/' def parallelStages = [:]
def imagePrefix = 'ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/'
def parallelStages = [:]

Copilot uses AI. Check for mistakes.
Jenkinsfile Outdated
script {
def imageTags = params.MARKLOGIC_IMAGE_TAGS.split(',')
def imagePrefix = 'ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/' def parallelStages = [:]
imageTags.each { tag ->
Copy link

Copilot AI Nov 18, 2025

Choose a reason for hiding this comment

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

Inconsistent indentation: lines 250-251 use tabs while line 252 appears to have extra indentation. Ensure consistent indentation throughout the script block.

Suggested change
imageTags.each { tag ->
imageTags.each { tag ->

Copilot uses AI. Check for mistakes.
@rjrudin rjrudin merged commit ad497c3 into develop Nov 18, 2025
3 checks passed
@rjrudin rjrudin deleted the feature/jenkins-2 branch November 18, 2025 12:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants