From 3ae4b689d67636f52d8657c860bdece453080840 Mon Sep 17 00:00:00 2001 From: Juee Himalbhai Desai Date: Thu, 20 Jul 2023 09:58:36 -0700 Subject: [PATCH] --- contrib/intel/jenkins/Jenkinsfile | 49 ++++++++++++++++--------------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/contrib/intel/jenkins/Jenkinsfile b/contrib/intel/jenkins/Jenkinsfile index 7e82edf0669..a93c83b7d8f 100644 --- a/contrib/intel/jenkins/Jenkinsfile +++ b/contrib/intel/jenkins/Jenkinsfile @@ -3,7 +3,7 @@ import groovy.transform.Field properties([disableConcurrentBuilds(abortPrevious: true)]) def DO_RUN=1 def TARGET="main" -def SCRIPT_LOCATION="py_scripts/contrib/intel/jenkins" +def SCRIPT_LOCATION="contrib/intel/jenkins" def RELEASE=0 @Field def BUILD_MODES=["reg", "dbg", "dl"] @Field def MPI_TYPES=["impi", "mpich", "ompi"] @@ -160,7 +160,7 @@ pipeline { } stages { - stage ('opt-out') { + /*stage ('opt-out') { steps { script { TARGET=check_target() @@ -172,11 +172,11 @@ pipeline { RELEASE=release() } } - } + }*/ stage ('parallel-builds') { when { equals expected: 1, actual: DO_RUN } parallel { - stage ('build') { + /*stage ('build') { steps { script { echo "Copying build dirs." @@ -206,8 +206,8 @@ pipeline { } } } - } - stage ('build-daos') { + }*/ + /* stage ('build-daos') { agent { node { label 'daos_head' @@ -241,8 +241,8 @@ pipeline { --build_item=fabtests""") } } - } - stage ('build-dsa') { + }*/ + /*stage ('build-dsa') { agent { node { label 'dsa' @@ -267,7 +267,7 @@ pipeline { """ } } - } + }*/ stage ('build-gpu') { agent { node { @@ -300,7 +300,7 @@ pipeline { stage('parallel-tests') { when { equals expected: 1, actual: DO_RUN } parallel { - stage('MPI_verbs-rxm') { + /*stage('MPI_verbs-rxm') { steps { script { dir ("${env.WORKSPACE}/${SCRIPT_LOCATION}/") { @@ -465,7 +465,7 @@ pipeline { steps { script { dir ("${env.WORKSPACE}/${SCRIPT_LOCATION}/") { - run_middleware([["tcp", "rxm"]/*, ["psm3", null]*/], "oneCCL", + run_middleware([["tcp", "rxm"]/*, ["psm3", null]*//*], "oneCCL", "oneccl", "bulbasaur", "2") } } @@ -518,7 +518,7 @@ pipeline { } } } - } + }*/ stage ('DMABUF-Tests') { agent { node { label 'ze' } } options { skipDefaultCheckout() } @@ -531,7 +531,7 @@ pipeline { } } } - stage ('ze-shm') { + /*stage ('ze-shm') { steps { script { dir ("${env.WORKSPACE}/${SCRIPT_LOCATION}/") { @@ -611,10 +611,10 @@ pipeline { """ } } - } + }*/ } } - stage ('Summary') { + /*stage ('Summary') { when { equals expected: 1, actual: DO_RUN } steps { withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin/:$PYTHONPATH']) { @@ -643,8 +643,8 @@ pipeline { """ } } - } - stage ('Summary-daos') { + }*/ + /*stage ('Summary-daos') { agent {node {label 'daos_head'}} when { equals expected: 1, actual: DO_RUN } steps { @@ -657,7 +657,7 @@ pipeline { """ } } - } + }*/ } post { @@ -667,7 +667,7 @@ pipeline { } } success { - node ('daos_head') { + /*node ('daos_head') { withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:$PYTHONPATH']) { sh """ if [[ ${DO_RUN} -eq 1 ]]; then @@ -678,7 +678,7 @@ pipeline { deleteDir() } } - } + }*/ withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:$PYTHONPATH']) { dir("${env.WORKSPACE}") { sh "python3.9 ${env.WORKSPACE}/${SCRIPT_LOCATION}/summary.py -v --summary_item=all" @@ -686,7 +686,7 @@ pipeline { } } aborted { - node ('daos_head') { + /*node ('daos_head') { withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:$PYTHONPATH']) { dir ("${env.JOB_INSTALL_DIR}/${env.JOB_NAME}/${env.BUILD_NUMBER}/middlewares") { deleteDir() @@ -699,7 +699,7 @@ pipeline { deleteDir() } } - } + }*/ node ('ze') { withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:$PYTHONPATH']) { dir ("${env.JOB_INSTALL_DIR}/${env.JOB_NAME}/${env.BUILD_NUMBER}/middlewares") { @@ -714,7 +714,7 @@ pipeline { } } cleanup { - node ('daos_head') { + /*node ('daos_head') { withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:$PYTHONPATH']) { dir ("${env.JOB_INSTALL_DIR}/${env.JOB_NAME}/${env.BUILD_NUMBER}") { deleteDir() @@ -739,7 +739,7 @@ pipeline { deleteDir() } } - } + }*/ node ('ze') { withEnv(['PATH+EXTRA=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:$PYTHONPATH']) { dir ("${env.JOB_INSTALL_DIR}/${env.JOB_NAME}/${env.BUILD_NUMBER}") { @@ -767,3 +767,4 @@ pipeline { } } } +