File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments