File tree Expand file tree Collapse file tree 4 files changed +20
-16
lines changed
scripts/reports/compilations Expand file tree Collapse file tree 4 files changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ LOG_GROUP_END=${LOG_GROUP_END:-"::endgroup::"} # Prefix to end a log group. Defa
1717# CDPATH reduces the scope of the cd command to potentially prevent unintended directory changes.
1818# This way non-standard tools like readlink aren't needed.
1919REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR:- $( CDPATH=. cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " && pwd -P )}
20- echo " CsvReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
21-
2220REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR:- $(dirname -- " ${REPORT_COMPILATIONS_SCRIPT_DIR} " )}
23- echo " CsvReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
24-
2521# Get the "domains" directory that contains analysis and report scripts by functionality.
2622DOMAINS_DIRECTORY=${DOMAINS_DIRECTORY:- " ${REPORTS_SCRIPT_DIR} /../../domains" }
23+
24+ echo " ${LOG_GROUP_START} Initialize CSV Reports" ;
25+ echo " CsvReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
26+ echo " CsvReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
2727echo " CsvReports: DOMAINS_DIRECTORY=${DOMAINS_DIRECTORY} "
28+ echo " ${LOG_GROUP_END} " ;
2829
2930# Run all CSV report scripts (filename ending with Csv.sh) in the REPORTS_SCRIPT_DIR and DOMAINS_DIRECTORY directories.
3031for directory in " ${REPORTS_SCRIPT_DIR} " " ${DOMAINS_DIRECTORY} " ; do
Original file line number Diff line number Diff line change @@ -20,18 +20,18 @@ LOG_GROUP_END=${LOG_GROUP_END:-"::endgroup::"} # Prefix to end a log group. Defa
2020# CDPATH reduces the scope of the cd command to potentially prevent unintended directory changes.
2121# This way non-standard tools like readlink aren't needed.
2222REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR:- $( CDPATH=. cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " && pwd -P )}
23- echo " JupyterReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
24-
2523REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR:- $(dirname -- " ${REPORT_COMPILATIONS_SCRIPT_DIR} " )}
26- echo " JupyterReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
27-
2824# Get the "scripts" directory by taking the scripts report path and going one directory up.
2925SCRIPTS_DIR=${SCRIPTS_DIR:- $(dirname -- " ${REPORTS_SCRIPT_DIR} " )}
30- echo " JupyterReports: SCRIPTS_DIR=${SCRIPTS_DIR} "
31-
3226# Get the "jupyter" directory by taking the path of the scripts directory, going up one directory and change then into "jupyter".
3327JUPYTER_NOTEBOOK_DIRECTORY=${JUPYTER_NOTEBOOK_DIRECTORY:- " ${SCRIPTS_DIR} /../jupyter" } # Repository directory containing the Jupyter Notebooks
28+
29+ echo " ${LOG_GROUP_START} Initialize Jupyter Notebook Reports" ;
30+ echo " JupyterReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
31+ echo " JupyterReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
32+ echo " JupyterReports: SCRIPTS_DIR=${SCRIPTS_DIR} "
3433echo " JupyterReports: JUPYTER_NOTEBOOK_DIRECTORY=${JUPYTER_NOTEBOOK_DIRECTORY} "
34+ echo " ${LOG_GROUP_END} " ;
3535
3636# Run all jupiter notebooks
3737for jupyter_notebook_file in " ${JUPYTER_NOTEBOOK_DIRECTORY} " /* .ipynb; do
Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ LOG_GROUP_END=${LOG_GROUP_END:-"::endgroup::"} # Prefix to end a log group. Defa
1717# CDPATH reduces the scope of the cd command to potentially prevent unintended directory changes.
1818# This way non-standard tools like readlink aren't needed.
1919REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR:- $( CDPATH=. cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " && pwd -P )}
20- echo " PythonReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
21-
2220REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR:- $(dirname -- " ${REPORT_COMPILATIONS_SCRIPT_DIR} " )}
23- echo " PythonReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
24-
2521# Get the "domains" directory that contains analysis and report scripts by functionality.
2622DOMAINS_DIRECTORY=${DOMAINS_DIRECTORY:- " ${REPORTS_SCRIPT_DIR} /../../domains" }
23+
24+ echo " ${LOG_GROUP_START} Initialize Python Reports" ;
25+ echo " PythonReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
26+ echo " PythonReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
2727echo " PythonReports: DOMAINS_DIRECTORY=${DOMAINS_DIRECTORY} "
28+ echo " ${LOG_GROUP_END} " ;
2829
2930# Run all Python report scripts (filename ending with Csv.sh) in the REPORTS_SCRIPT_DIR and DOMAINS_DIRECTORY directories.
3031for directory in " ${REPORTS_SCRIPT_DIR} " " ${DOMAINS_DIRECTORY} " ; do
Original file line number Diff line number Diff line change @@ -20,10 +20,12 @@ LOG_GROUP_END=${LOG_GROUP_END:-"::endgroup::"} # Prefix to end a log group. Defa
2020# CDPATH reduces the scope of the cd command to potentially prevent unintended directory changes.
2121# This way non-standard tools like readlink aren't needed.
2222REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR:- $( CDPATH=. cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " && pwd -P )}
23- echo " VisualizationReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
24-
2523REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR:- $(dirname -- " ${REPORT_COMPILATIONS_SCRIPT_DIR} " )}
24+
25+ echo " ${LOG_GROUP_START} Initialize Visualization Reports" ;
26+ echo " VisualizationReports: REPORT_COMPILATIONS_SCRIPT_DIR=${REPORT_COMPILATIONS_SCRIPT_DIR} "
2627echo " VisualizationReports: REPORTS_SCRIPT_DIR=${REPORTS_SCRIPT_DIR} "
28+ echo " ${LOG_GROUP_END} " ;
2729
2830# Run all visualization scripts
2931for visualization_script_file in " ${REPORTS_SCRIPT_DIR} " /* Visualization.sh; do
You can’t perform that action at this time.
0 commit comments