Skip to content

Commit

Permalink
intel/ci: added threads/comm/ tests to tcp exclude list
Browse files Browse the repository at this point in the history
adding threads/comm/idup_nb and threads/comm/idup_comm_gen
test to mpichtest_excludes for tcp.
The test already fails for verbs and is under investigation
for failing due to timeout.

Signed-off-by: Nikhil Nanal <[email protected]>
  • Loading branch information
nikhilnanal committed Sep 20, 2023
1 parent 318b3f4 commit acb36fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import groovy.transform.Field
properties([disableConcurrentBuilds(abortPrevious: true)])
@Field def DO_RUN=true
@Field def TARGET="main"
@Field def SCRIPT_LOCATION="contrib/intel/jenkins"
@Field def SCRIPT_LOCATION="py_scripts/contrib/intel/jenkins"
@Field def RELEASE=false
@Field def BUILD_MODES=["reg", "dbg", "dl"]
@Field def MPI_TYPES=["impi", "mpich", "ompi"]
Expand Down Expand Up @@ -691,7 +691,7 @@ pipeline {
"${env.LOG_DIR}")

summarize("all", verbose=false, release=RELEASE,
send_mail=false)
send_mail=env.WEEKLY.toBoolean())
if (RELEASE) {
save_summary()
}
Expand Down Expand Up @@ -737,4 +737,4 @@ pipeline {
dir("${env.WORKSPACE}@tmp") { deleteDir() }
}
}
}
}
1 change: 0 additions & 1 deletion contrib/intel/jenkins/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,5 @@ def log_dir(install_path, release=False):
extract_mpich('impi')
elif (build_item == 'builddir'):
copy_build_dir(install_path)

elif (build_item == 'logdir'):
log_dir(install_path, release)
4 changes: 3 additions & 1 deletion contrib/intel/jenkins/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def osu_cmd(self, test_type, test):
print(f"Running OSU-{test_type}-{test}")
cmd = f'{self.osu_src}/{test_type}/{test} '
return cmd

def execute_cmd(self):
assert(self.osu_src)
p = re.compile('osu_put*')
Expand Down Expand Up @@ -709,6 +709,8 @@ def __init__(self, jobname, buildno, testname, core_prov, fabric,
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')]
},
'verbs' : { '.' : [('spawn','dir')],
Expand Down

0 comments on commit acb36fd

Please sign in to comment.