From 32c9dbb2be693b38b551680504f145e1104ae655 Mon Sep 17 00:00:00 2001 From: Anita Caron Date: Thu, 10 Oct 2024 17:14:44 -0300 Subject: [PATCH] removing the `truncate` step to download the same sample created --- Makefile | 14 +++++++------- util/dashboard_config.py | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 411da26..285619b 100644 --- a/Makefile +++ b/Makefile @@ -18,13 +18,13 @@ clean: rm -rf build dashboard dependencies # Truncate potentially huge robot reports -truncate_reports_for_github: - $(eval REPORTS := $(wildcard dashboard/*/robot_report.tsv)) - for REP in $(REPORTS); do \ - touch $$REP; \ - cat $$REP | head -$(REPORT_LENGTH_LIMIT) > $$REP.tmp; \ - mv $$REP.tmp $$REP; \ - done +# truncate_reports_for_github: +# $(eval REPORTS := $(wildcard dashboard/*/robot_report.tsv)) +# for REP in $(REPORTS); do \ +# touch $$REP; \ +# cat $$REP | head -$(REPORT_LENGTH_LIMIT) > $$REP.tmp; \ +# mv $$REP.tmp $$REP; \ +# done # ------------------- # ### DIRECTORY SETUP ### diff --git a/util/dashboard_config.py b/util/dashboard_config.py index 4ba59ec..c974eec 100755 --- a/util/dashboard_config.py +++ b/util/dashboard_config.py @@ -75,8 +75,8 @@ def rundashboard(configfile, clean): prepare_ontologies(ontologies['ontologies'], ontology_dir, dashboard_dir, make_parameters, config) logging.info("Building the dashboard") runcmd(f"make dashboard {make_parameters} -B", config.get_dashboard_report_timeout_seconds()) - logging.info("Postprocess files for github") - runcmd(f"make truncate_reports_for_github {make_parameters} -B", config.get_dashboard_report_timeout_seconds()) + # logging.info("Postprocess files for github") + # runcmd(f"make truncate_reports_for_github {make_parameters} -B", config.get_dashboard_report_timeout_seconds()) info_usage_namespace = 'Info: Usage of namespaces in axioms'