@@ -105,7 +105,7 @@ job_out=$(ls ${job_dir} | grep "${GP_slurm_out}")
105
105
ERROR=-1
106
106
if [[ ${SLURM} -eq 1 ]]; then
107
107
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} " )
109
109
[[ $? -eq 0 ]] && ERROR=1 || ERROR=0
110
110
# have to be careful to not add searched for pattern into slurm out file
111
111
[[ ${VERBOSE} -ne 0 ]] && echo " >> searching for '" ${GP_error} " '"
115
115
FAILED=-1
116
116
if [[ ${SLURM} -eq 1 ]]; then
117
117
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} " )
119
119
[[ $? -eq 0 ]] && FAILED=1 || FAILED=0
120
120
# have to be careful to not add searched for pattern into slurm out file
121
121
[[ ${VERBOSE} -ne 0 ]] && echo " >> searching for '" ${GP_failed} " '"
125
125
MISSING=-1
126
126
if [[ ${SLURM} -eq 1 ]]; then
127
127
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} " )
129
129
[[ $? -eq 0 ]] && MISSING=1 || MISSING=0
130
130
# have to be careful to not add searched for pattern into slurm out file
131
131
[[ ${VERBOSE} -ne 0 ]] && echo " >> searching for '" ${GP_req_missing} " '"
135
135
NO_MISSING=-1
136
136
if [[ ${SLURM} -eq 1 ]]; then
137
137
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} " )
139
139
[[ $? -eq 0 ]] && NO_MISSING=1 || NO_MISSING=0
140
140
# have to be careful to not add searched for pattern into slurm out file
141
141
[[ ${VERBOSE} -ne 0 ]] && echo " >> searching for '" ${GP_no_missing} " '"
145
145
TGZ=-1
146
146
TARBALL=
147
147
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 )
150
150
if [[ $? -eq 0 ]]; then
151
151
TGZ=1
152
152
TARBALL=$( echo ${grep_out} | sed -e ' s@^.*\(eessi[^/ ]*\) .*$@\1@' )
@@ -404,7 +404,7 @@ if [[ ! -z ${TARBALL} ]]; then
404
404
size_mib=$(( ${size} >> 20 ))
405
405
tmpfile=$( mktemp --tmpdir=. tarfiles.XXXX)
406
406
tar tf ${TARBALL} > ${tmpfile}
407
- entries=$( wc -l ${tmpfile} )
407
+ entries=$( cat ${tmpfile} | wc -l )
408
408
# determine prefix from job config: VERSION/software/OS_TYPE/CPU_FAMILY/ARCHITECTURE
409
409
# 2023.04/software/linux/x86_64/intel/skylake_avx512
410
410
# repo_version = 2022.11
@@ -419,8 +419,9 @@ if [[ ! -z ${TARBALL} ]]; then
419
419
software_entries=$( grep " ${prefix} /software" ${tmpfile} )
420
420
lmod_entries=$( grep " ${prefix} /.lmod/cache" ${tmpfile} )
421
421
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)
424
425
lmod_shortened=$( echo " ${lmod_entries} " | sed -e " s@${prefix} /@@" )
425
426
426
427
artefact_summary=" <summary>$( print_code_item ' __ITEM__' ${TARBALL} ) </summary>"
@@ -430,29 +431,29 @@ if [[ ! -z ${TARBALL} ]]; then
430
431
CoArList=" ${CoArList} $( print_br_item ' modules under ___ITEM___' ${prefix} /modules/all) "
431
432
CoArList=" ${CoArList} <pre>"
432
433
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} "
436
437
else
437
438
CoArList=" ${CoArList} $( print_br_item ' __ITEM__' ' no module files in tarball' ) "
438
439
fi
439
440
CoArList=" ${CoArList} </pre>"
440
441
CoArList=" ${CoArList} $( print_br_item ' software under ___ITEM___' ${prefix} /software) "
441
442
CoArList=" ${CoArList} <pre>"
442
443
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} "
446
447
else
447
448
CoArList=" ${CoArList} $( print_br_item ' __ITEM__' ' no software packages in tarball' ) "
448
449
fi
449
450
CoArList=" ${CoArList} </pre>"
450
451
CoArList=" ${CoArList} $( print_br_item ' other under ___ITEM___' ${prefix} ) "
451
452
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} "
456
457
else
457
458
CoArList=" ${CoArList} $( print_br_item ' __ITEM__' ' no other files in tarball' ) "
458
459
fi
463
464
464
465
comment_artefacts_details=" ${comment_artefact_details_fmt/ __ARTEFACT_SUMMARY__/ ${artefact_summary} } "
465
466
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} } "
467
468
468
469
# now put all pieces together creating comment_details from comment_template
469
470
comment_description=${comment_template/ __SUMMARY_FMT__/ ${comment_summary} }
0 commit comments