Skip to content

Commit

Permalink
Merge pull request #3637 from cms-sw/scramarchsherpa
Browse files Browse the repository at this point in the history
scram arch check for sherpa converted warning
  • Loading branch information
efeyazgan authored Feb 7, 2024
2 parents 67a6f3a + 38bce5e commit 619f7bf
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions bin/utils/request_fragment_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,10 +770,12 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
if len(scram_sherpa):
scram_sherpa = scram_sherpa[0]
print ("scram_arch for Sherpa = ",scram_sherpa)
if scram_sherpa == scram_arch:
print ("[OK] scram_arch for Sherpa and CMSSW are the same")
else:
errors.append("scram_arch for Sherpa and CMSSW are NOT the same. But note that this check is done based on folder names except the one for CMSSW")
print(len(scram_sherpa[0]))
if len(scram_sherpa[0]) != 0:
if scram_sherpa == scram_arch:
print ("[OK] scram_arch for Sherpa and CMSSW are the same")
else:
errors.append("scram_arch for Sherpa and CMSSW are NOT the same. But note that this check is done based on folder names except the one for CMSSW")
else:
warnings.append("scram_arch for Sherpa unidentifiable")
sv_tmp = re.findall("sherpa/.*/",gridpack_cvmfs_path_tmp)[0].split("/")[1].split(".")
Expand All @@ -786,7 +788,8 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
openloops_flag = True
OL_list = os.popen('grep openloops '+pi_file).read().split("/")
scram_OL = [s for s in OL_list if "gcc" in s]
if len(scram_OL):
print(scram_OL)
if len(scram_OL) and len(scram_sherpa):
scram_OL = scram_OL[0]
print ("scram_arch for OpenLoops = ",scram_OL)
if scram_OL == scram_sherpa:
Expand Down

0 comments on commit 619f7bf

Please sign in to comment.