Skip to content

Commit

Permalink
intel/ci: debug spawn re-enable
Browse files Browse the repository at this point in the history
Signed-off-by: Nikhil Nanal <[email protected]>
  • Loading branch information
nikhilnanal committed Oct 5, 2023
1 parent fdb0597 commit 426dc86
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
8 changes: 4 additions & 4 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -367,16 +367,16 @@ pipeline {
}
}
aborted {
/* node ('daos_head') {
node ('daos_head') {
dir ("${DELETE_LOCATION}/middlewares") { deleteDir() }
}
node ('ze') {
dir ("${DELETE_LOCATION}/middlewares") { deleteDir() }
}
dir ("${DELETE_LOCATION}/middlewares") { deleteDir() }
/* dir ("${DELETE_LOCATION}/middlewares") { deleteDir() }
*/
}
cleanup {/*
cleanup {
node ('daos_head') {
dir ("${DELETE_LOCATION}") { deleteDir() }
dir("${env.WORKSPACE}") { deleteDir() }
Expand All @@ -389,7 +389,7 @@ pipeline {
}
dir("${DELETE_LOCATION}") { deleteDir() }
dir("${env.WORKSPACE}") { deleteDir() }
dir("${env.WORKSPACE}@tmp") { deleteDir() }
/*dir("${env.WORKSPACE}@tmp") { deleteDir() }
*/
}
}
Expand Down
23 changes: 12 additions & 11 deletions contrib/intel/jenkins/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,21 +707,22 @@ def __init__(self, jobname, buildno, testname, core_prov, fabric,
self.pwd = os.getcwd()
self.weekly = weekly
self.mpichtests_exclude = {
'tcp' : { '.' : [('spawn','dir'), ('rma','dir')],
'threads' : [('spawn','dir'), ('rma','dir')],
'threads/comm' : [('idup_nb 4','test'),
('idup_comm_gen 4','test')],
'errors' : [('spawn','dir'),('rma','dir')]
'tcp' : {'.' : [('spawn','dir'),('rma', 'dir')],
'threads' : [('spawn','dir'), ('rma','dir')],
#'threads/comm' : [('idup_nb 4', 'test'),
# ('idup_comm_gen 4', 'test')],
#'errors' : [('spawn','dir'),('rma','dir')]
},
'verbs' : { '.' : [('spawn','dir')],
'threads/comm' : [('idup_nb 4','test')],
'threads' : [('spawn','dir'), ('rma','dir')],
#'threads/comm' : [('idup_nb 4','test')],
'threads' : [('spawn','dir')],
'pt2pt' : [('sendrecv3 2','test'),
('sendrecv3 2 arg=-isendrecv','test')],
'threads/pt2pt': [(f"mt_improbe_sendrecv_huge 2 "
f"arg=-iter=64 arg=-count=4194304 "
f"env=MPIR_CVAR_CH4_OFI_EAGER_MAX_MSG_SIZE"
f"=16384", 'test')]
#'threads/pt2pt': [(f"mt_improbe_sendrecv_huge 2 "
# f"arg=-iter=64 arg=-count=4194304 "
# f"env=MPIR_CVAR_CH4_OFI_EAGER_MAX_MSG_SIZE"
# f"=16384", 'test')]

}
}

Expand Down

0 comments on commit 426dc86

Please sign in to comment.