Skip to content

Commit e4bd082

Browse files
committed
MLE-27077 Disabling ARM tests
These are running on a non-regression build, which we don't want. Modified the branch so they don't run at all for now.
1 parent c505138 commit e4bd082

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def getPlatform(isArm = false) {
1818
return isArm ? "linux/arm64" : "linux/amd64"
1919
}
2020

21-
def setConverters(isArm = false) {
21+
def shouldInstallConverters(isArm = false) {
2222
return isArm ? "false" :"true"
2323
}
2424

@@ -198,7 +198,7 @@ pipeline {
198198
DMC_USER = credentials('MLBUILD_USER')
199199
DMC_PASSWORD = credentials('MLBUILD_PASSWORD')
200200
PLATFORM = getPlatform()
201-
MARKLOGIC_INSTALL_CONVERTERS = setConverters()
201+
MARKLOGIC_INSTALL_CONVERTERS = shouldInstallConverters()
202202
}
203203

204204
stages {
@@ -293,7 +293,7 @@ pipeline {
293293

294294
stage('provisionInfrastructure'){
295295
when {
296-
branch 'develop'
296+
branch 'develop-arm'
297297
expression { return !params.regressions }
298298
}
299299
agent {label 'javaClientLinuxPool'}
@@ -376,15 +376,15 @@ pipeline {
376376
stage('regressions-11 arm infrastructure') {
377377
when {
378378
beforeAgent true
379-
branch 'develop'
379+
branch 'develop-arm'
380380
expression { return !params.regressions }
381381
expression { return env.EC2_PRIVATE_IP != null }
382382
}
383383
agent { label "java-client-agent-${BUILD_NUMBER}" }
384384
environment {
385385
JAVA_HOME_DIR = getJavaHomePath(true)
386386
PLATFORM = getPlatform(true)
387-
MARKLOGIC_INSTALL_CONVERTERS = setConverters(true)
387+
MARKLOGIC_INSTALL_CONVERTERS = shouldInstallConverters(true)
388388
}
389389
steps {
390390
checkout([$class: 'GitSCM',

0 commit comments

Comments
 (0)