Skip to content
Snippets Groups Projects

[BMK-1142] reduce otuput size

Merged Domenico Giordano requested to merge master into qa-build-alice-digi-reco-core-run3-ma
Compare and
7 files
+ 63
114
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 8
5
@@ -533,18 +533,21 @@ function create_sing_cache_dirs(){
function generate_wl_list(){
echo "# HEP Workloads list"
LONG_STRING=""
echo "| Experiment | WL repo | SIF Containers | Latest Docker Container | Lastest Built Version | Latest Pipeline status | "
echo "| -------- | -------- | -------- | -------- | -------- | -------- |"
for aexp in $(find . -mindepth 1 -maxdepth 1 -type d | sed -e 's@\.\/@@' | grep -E -v "common|build-executor|scripts|test|\..*" | sort );
EXPERIMENTS=$(find . -mindepth 1 -maxdepth 1 -type d | sed -e 's@\.\/@@' | grep -E -v "common|build-executor|scripts|test|\..*" | sort )
for aexp in ${EXPERIMENTS};
do
#echo $aexp
for wl in $(find "$aexp" -mindepth 1 -maxdepth 1 -type d| sed -e "s@$aexp\/@@" | sort);
WORKLOADS=$(find "$aexp" -mindepth 1 -maxdepth 1 -type d| sed -e "s@$aexp\/@@" | sort)
for wl in $WORKLOADS;
do
source "${aexp}/${wl}/${aexp}-${wl}.spec"
echo "| $aexp | [$wl][${aexp}_${wl}_code] | [link][${aexp}_${wl}_sif] | [docker][${aexp}_${wl}_img] | [${HEPWL_DOCKERIMAGETAG}][${aexp}_${wl}_pipelink] | ![ci][${aexp}_${wl}_pipeline]|"
pipeline_url=$(grep "\[${aexp}_${wl}_pipelink\]:" "${CI_PROJECT_DIR}"/WL_list.md | cut -d ":" -f2- | sed -e 's@\s@@g')
pipeline_url=""
if [ -f "${CI_PROJECT_DIR}"/WL_list.md ]; then
pipeline_url=$( (grep "\[${aexp}_${wl}_pipelink\]:" "${CI_PROJECT_DIR}"/WL_list.md || echo ":") | cut -d ":" -f2- | sed -e 's@\s@@g')
fi
if [ "${CI_COMMIT_BRANCH}" == "qa-build-${aexp}-${wl}" ]; then
pipeline_url="https://gitlab.cern.ch/hep-benchmarks/hep-workloads/-/pipelines/${CI_PIPELINE_ID}"
fi
Loading