Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 61f8280

Browse files
committedJun 18, 2023
update and bug fixes
1 parent 1593a4b commit 61f8280

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed
 

‎bot/check-result.sh

+21-20
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ job_out=$(ls ${job_dir} | grep "${GP_slurm_out}")
105105
ERROR=-1
106106
if [[ ${SLURM} -eq 1 ]]; then
107107
GP_error='ERROR: '
108-
grep_out=$(grep "${GP_error}" ${job_dir}/${job_out})
108+
grep_out=$(grep -v "^>> searching for " ${job_dir}/${job_out} | grep "${GP_error}")
109109
[[ $? -eq 0 ]] && ERROR=1 || ERROR=0
110110
# have to be careful to not add searched for pattern into slurm out file
111111
[[ ${VERBOSE} -ne 0 ]] && echo ">> searching for '"${GP_error}"'"
@@ -115,7 +115,7 @@ fi
115115
FAILED=-1
116116
if [[ ${SLURM} -eq 1 ]]; then
117117
GP_failed='FAILED: '
118-
grep_out=$(grep "${GP_failed}" ${job_dir}/${job_out})
118+
grep_out=$(grep -v "^>> searching for " ${job_dir}/${job_out} | grep "${GP_failed}")
119119
[[ $? -eq 0 ]] && FAILED=1 || FAILED=0
120120
# have to be careful to not add searched for pattern into slurm out file
121121
[[ ${VERBOSE} -ne 0 ]] && echo ">> searching for '"${GP_failed}"'"
@@ -125,7 +125,7 @@ fi
125125
MISSING=-1
126126
if [[ ${SLURM} -eq 1 ]]; then
127127
GP_req_missing=' required modules missing:'
128-
grep_out=$(grep "${GP_req_missing}" ${job_dir}/${job_out})
128+
grep_out=$(grep -v "^>> searching for " ${job_dir}/${job_out} | grep "${GP_req_missing}")
129129
[[ $? -eq 0 ]] && MISSING=1 || MISSING=0
130130
# have to be careful to not add searched for pattern into slurm out file
131131
[[ ${VERBOSE} -ne 0 ]] && echo ">> searching for '"${GP_req_missing}"'"
@@ -135,7 +135,7 @@ fi
135135
NO_MISSING=-1
136136
if [[ ${SLURM} -eq 1 ]]; then
137137
GP_no_missing='No missing installations'
138-
grep_out=$(grep "${GP_no_missing}" ${job_dir}/${job_out})
138+
grep_out=$(grep -v "^>> searching for " ${job_dir}/${job_out} | grep "${GP_no_missing}")
139139
[[ $? -eq 0 ]] && NO_MISSING=1 || NO_MISSING=0
140140
# have to be careful to not add searched for pattern into slurm out file
141141
[[ ${VERBOSE} -ne 0 ]] && echo ">> searching for '"${GP_no_missing}"'"
@@ -145,8 +145,8 @@ fi
145145
TGZ=-1
146146
TARBALL=
147147
if [[ ${SLURM} -eq 1 ]]; then
148-
GP_tgz_created="tar.gz created!"
149-
grep_out=$(grep "${GP_tgz_created}" ${job_dir}/${job_out})
148+
GP_tgz_created="\.tar\.gz created!"
149+
grep_out=$(grep -v "^>> searching for " ${job_dir}/${job_out} | grep "${GP_tgz_created}" | sort -u)
150150
if [[ $? -eq 0 ]]; then
151151
TGZ=1
152152
TARBALL=$(echo ${grep_out} | sed -e 's@^.*\(eessi[^/ ]*\) .*$@\1@')
@@ -404,7 +404,7 @@ if [[ ! -z ${TARBALL} ]]; then
404404
size_mib=$((${size} >> 20))
405405
tmpfile=$(mktemp --tmpdir=. tarfiles.XXXX)
406406
tar tf ${TARBALL} > ${tmpfile}
407-
entries=$(wc -l ${tmpfile})
407+
entries=$(cat ${tmpfile} | wc -l)
408408
# determine prefix from job config: VERSION/software/OS_TYPE/CPU_FAMILY/ARCHITECTURE
409409
# 2023.04/software/linux/x86_64/intel/skylake_avx512
410410
# repo_version = 2022.11
@@ -419,8 +419,9 @@ if [[ ! -z ${TARBALL} ]]; then
419419
software_entries=$(grep "${prefix}/software" ${tmpfile})
420420
lmod_entries=$(grep "${prefix}/.lmod/cache" ${tmpfile})
421421
other_entries=$(cat ${tmpfile} | grep -v "${prefix}/modules" | grep -v "${prefix}/software")
422-
modules=$(echo "${modules_entries}" | grep "/all/.*/.*lua$" | sed -e 's@^.*/\([^/]*/[^/]*.lua\)$@\1@')
423-
software_pkgs=$(echo "${software_entries}" | sed -e "s@${prefix}/software/@@" | awk -F/ '{print $1 "/" $2}' | sort -u)
422+
other_shortened=$(echo "${other_entries}" | sed -e "s@^.*${prefix}/@@" | sort -u)
423+
modules=$(echo "${modules_entries}" | grep "/all/.*/.*lua$" | sed -e 's@^.*/\([^/]*/[^/]*.lua\)$@\1@' | sort -u)
424+
software_pkgs=$(echo "${software_entries}" | sed -e "s@${prefix}/software/@@" | awk -F/ '{if (NR >= 2) {print $1 "/" $2}}' | sort -u)
424425
lmod_shortened=$(echo "${lmod_entries}" | sed -e "s@${prefix}/@@")
425426

426427
artefact_summary="<summary>$(print_code_item '__ITEM__' ${TARBALL})</summary>"
@@ -430,29 +431,29 @@ if [[ ! -z ${TARBALL} ]]; then
430431
CoArList="${CoArList}$(print_br_item 'modules under ___ITEM___' ${prefix}/modules/all)"
431432
CoArList="${CoArList}<pre>"
432433
if [[ ! -z ${modules} ]]; then
433-
for mod in $(echo "${modules}" | sort); do
434-
CoArList="${CoArList}$(print_br_item '__ITEM__' ${mod})"
435-
done
434+
while IFS= read -r mod ; do
435+
CoArList="${CoArList}$(print_br_item '<code>__ITEM__</code>' ${mod})"
436+
done <<< "${modules}"
436437
else
437438
CoArList="${CoArList}$(print_br_item '__ITEM__' 'no module files in tarball')"
438439
fi
439440
CoArList="${CoArList}</pre>"
440441
CoArList="${CoArList}$(print_br_item 'software under ___ITEM___' ${prefix}/software)"
441442
CoArList="${CoArList}<pre>"
442443
if [[ ! -z ${software_pkgs} ]]; then
443-
for sw_pkg in $(echo "${software_pkgs}" | sort); do
444-
CoArList="${CoArList}$(print_br_item '__ITEM__' ${sw_pkg})"
445-
done
444+
while IFS= read -r sw_pkg ; do
445+
CoArList="${CoArList}$(print_br_item '<code>__ITEM__</code>' ${sw_pkg})"
446+
done <<< "${software_pkgs}"
446447
else
447448
CoArList="${CoArList}$(print_br_item '__ITEM__' 'no software packages in tarball')"
448449
fi
449450
CoArList="${CoArList}</pre>"
450451
CoArList="${CoArList}$(print_br_item 'other under ___ITEM___' ${prefix})"
451452
CoArList="${CoArList}<pre>"
452-
if [[ ! -z ${other_entries} ]]; then
453-
for other in $(echo "${other_entries}" | sort); do
454-
CoArList="${CoArList}$(print_br_item '__ITEM__' ${other})"
455-
done
453+
if [[ ! -z ${other_shortened} ]]; then
454+
while IFS= read -r other ; do
455+
CoArList="${CoArList}$(print_br_item '<code>__ITEM__</code>' ${other})"
456+
done <<< "${other_shortened}"
456457
else
457458
CoArList="${CoArList}$(print_br_item '__ITEM__' 'no other files in tarball')"
458459
fi
@@ -463,7 +464,7 @@ fi
463464

464465
comment_artefacts_details="${comment_artefact_details_fmt/__ARTEFACT_SUMMARY__/${artefact_summary}}"
465466
comment_artefacts_details="${comment_artefacts_details/__ARTEFACT_DETAILS__/${CoArList}}"
466-
comment_artefacts="${comment_artefacts_fmt/__ARTEFACTS_DETAILS_LIST__/${comment_artefacts_details}}"
467+
comment_artefacts="${comment_artefacts_fmt/__ARTEFACTS_LIST__/${comment_artefacts_details}}"
467468

468469
# now put all pieces together creating comment_details from comment_template
469470
comment_description=${comment_template/__SUMMARY_FMT__/${comment_summary}}

0 commit comments

Comments
 (0)
Please sign in to comment.