-
Notifications
You must be signed in to change notification settings - Fork 74
MLE-27077 Disabling ARM tests #1900
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -18,7 +18,7 @@ def getPlatform(isArm = false) { | |||||||||
| return isArm ? "linux/arm64" : "linux/amd64" | ||||||||||
| } | ||||||||||
|
|
||||||||||
| def setConverters(isArm = false) { | ||||||||||
| def shouldInstallConverters(isArm = false) { | ||||||||||
| return isArm ? "false" :"true" | ||||||||||
| } | ||||||||||
|
|
||||||||||
|
|
@@ -198,7 +198,7 @@ pipeline { | |||||||||
| DMC_USER = credentials('MLBUILD_USER') | ||||||||||
| DMC_PASSWORD = credentials('MLBUILD_PASSWORD') | ||||||||||
| PLATFORM = getPlatform() | ||||||||||
| MARKLOGIC_INSTALL_CONVERTERS = setConverters() | ||||||||||
| MARKLOGIC_INSTALL_CONVERTERS = shouldInstallConverters() | ||||||||||
| } | ||||||||||
|
|
||||||||||
| stages { | ||||||||||
|
|
@@ -293,7 +293,7 @@ pipeline { | |||||||||
|
|
||||||||||
| stage('provisionInfrastructure'){ | ||||||||||
| when { | ||||||||||
| branch 'develop' | ||||||||||
| branch 'develop-arm' | ||||||||||
| expression { return !params.regressions } | ||||||||||
|
Comment on lines
+296
to
297
|
||||||||||
| branch 'develop-arm' | |
| expression { return !params.regressions } | |
| // TODO(MLE-27077): Stage intentionally disabled; update this condition when ready to re-enable. | |
| expression { return false } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldInstallConvertersreads like it returns a boolean, but it returns string literals (\"true\"/\"false\"). Either return actual booleans (and let Jenkins handle coercion where needed) or rename the function to make it clear it returns an env-var string value (e.g.,getInstallConvertersEnvValue).