Skip to content

Commit 4fd9aa0

Browse files
committed
MLE-28459 Added regression-12 arm stage
1 parent 6f62a60 commit 4fd9aa0

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,39 @@ pipeline {
361361
}
362362
}
363363
}
364+
365+
stage('regressions-12 arm infrastructure') {
366+
when {
367+
beforeAgent true
368+
branch 'develop'
369+
expression { return params.regressions }
370+
expression { return env.EC2_PRIVATE_IP != null }
371+
}
372+
agent { label "java-client-agent-${BUILD_NUMBER}" }
373+
environment {
374+
JAVA_HOME_DIR = getJavaHomePathForARM()
375+
PLATFORM = "linux/arm64"
376+
MARKLOGIC_INSTALL_CONVERTERS = "false"
377+
}
378+
steps {
379+
checkout([$class : 'GitSCM',
380+
branches : scm.branches,
381+
doGenerateSubmoduleConfigurations: false,
382+
extensions : [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'java-client-api']],
383+
submoduleCfg : [],
384+
userRemoteConfigs : scm.userRemoteConfigs])
385+
386+
runTests("ml-docker-db-dev-tierpoint.bed-artifactory.bedford.progress.com/marklogic/marklogic-server-ubi9-arm:latest-12")
387+
}
388+
post {
389+
always {
390+
archiveArtifacts artifacts: 'java-client-api/**/build/reports/**/*.html'
391+
junit '**/build/**/TEST*.xml'
392+
updateWorkspacePermissions()
393+
tearDownDocker()
394+
}
395+
}
396+
}
364397
}
365398

366399
post {

0 commit comments

Comments
 (0)