Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bashrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export CML_HOME="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export CTEST_PARALLEL_LEVEL=10
export CTEST_PARALLEL_LEVEL=$(nproc)
export ASAN_OPTIONS="suppressions=${CML_HOME}/utility/sanitizers/asan.supp:fast_unwind_on_malloc=0"
export LSAN_OPTIONS="suppressions=${CML_HOME}/utility/sanitizers/lsan.supp"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake make git libxml2 libxml2-dev perl doxygen
sudo apt-get install -y cmake make git libxml2 libxml2-dev perl doxygen graphviz

- name: Checkout code
uses: actions/checkout@v4
Expand Down
23 changes: 0 additions & 23 deletions bin/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -833,29 +833,6 @@ SIM_color_string_color_string:
build_args: CML_OFFLINE_BUILD=1
runs:
RUN_test/input.py: null
SIM_convert_double_to_words_comparison_double_to_words:
model_dir: models/utilities/double_to_words
path: models/utilities/double_to_words/verif/SIM_convert_double_to_words_comparison
build_args: CML_OFFLINE_BUILD=1
runs:
RUN_test/input.py:
compare:
- models/utilities/double_to_words/verif/SIM_convert_double_to_words_comparison/RUN_test/log_test_data.csv
vs. models/utilities/double_to_words/verif/SIM_convert_double_to_words_comparison/verif_data/RUN_test/log_test_data.csv
SIM_convert_double_to_words_double_to_words:
model_dir: models/utilities/double_to_words
path: models/utilities/double_to_words/verif/SIM_convert_double_to_words
build_args: CML_OFFLINE_BUILD=1
runs:
ERROR_test/input.py: null
RUN_test/input.py:
compare:
- models/utilities/double_to_words/verif/SIM_convert_double_to_words/RUN_test/log_test_data.csv
vs. models/utilities/double_to_words/verif/SIM_convert_double_to_words/verif_data/RUN_test/log_test_data.csv
RUN_test_warn/input.py:
compare:
- models/utilities/double_to_words/verif/SIM_convert_double_to_words/RUN_test_warn/log_test_data.csv
vs. models/utilities/double_to_words/verif/SIM_convert_double_to_words/verif_data/RUN_test_warn/log_test_data.csv
SIM_correlated_state_dispersion_correlated_state_dispersion:
model_dir: models/dynamics/state_initialize/correlated_state_dispersion
path: models/dynamics/state_initialize/correlated_state_dispersion/verif/SIM_correlated_state_dispersion
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
find_package(Doxygen)
find_package(Doxygen COMPONENTS doxygen dot)

if (Doxygen_FOUND)
# Tell Doxygen to only check the sources and headers that we're building. This
Expand Down
1 change: 1 addition & 0 deletions docs/sphinx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ if (TARGET Doxygen::doxygen AND Sphinx_FOUND)
models/fhw/index.rst
models/interactions/index.rst
models/tools/index.rst
models/utilities/convert-double-to-words.rst
models/utilities/index.rst
models/utilities/subscriptions.rst
models/vehicle_management/index.rst
Expand Down
5 changes: 3 additions & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ def _get_dependency_minimum_versions():
extensions = [
"breathe",
"sphinx.ext.graphviz",
"sphinx_design"
]

templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

# Necessary for labelling a system of equations with a single equation number.
# Necessary for labeling a system of equations with a single equation number.
mathjax3_config = {
"tex": {"tags": "ams"}
}
Expand Down Expand Up @@ -95,4 +96,4 @@ def _get_dependency_minimum_versions():
rst_epilog = f"""
.. |TrickVersionRequired| replace:: {_trick_minimum_version}
.. |JEODVersionRequired| replace:: {_jeod_minimum_version}
"""
"""
Loading
Loading