Merge pull request #10869 from NREL/10868-DOA-file-updates #463
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Integrity | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
code_integrity_checks: | |
name: Static Code Analysis | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run clang-format style check for C/C++ source code. | |
uses: jidicula/clang-format-action@v4.14.0 | |
if: always() | |
with: | |
clang-format-version: '10' | |
check-path: 'src/EnergyPlus' | |
- name: Run clang-format style check for C/C++ unit test code. | |
uses: jidicula/clang-format-action@v4.14.0 | |
if: always() | |
with: | |
clang-format-version: '10' | |
check-path: 'tst/EnergyPlus/unit' | |
- name: Custom Check | |
if: always() | |
run: ./scripts/dev/custom_check.sh . | |
- name: Install cppcheck | |
if: always() | |
run: sudo apt-get install cppcheck | |
- name: Run CppCheck | |
id: cpp_check_run | |
if: always() | |
# TODO: Evaluate the long list of flags here | |
run: > | |
cppcheck | |
-D__cppcheck__ -UEP_Count_Calls -DEP_NO_OPENGL -UGROUND_PLOT -DLINK_WITH_PYTHON -DMSVC_DEBUG -DSKYLINE_MATRIX_REMOVE_ZERO_COLUMNS -U_OPENMP -Ugeneratetestdata | |
-DEP_cache_GlycolSpecificHeat -DEP_cache_PsyTsatFnPb -UEP_nocache_Psychrometrics -UEP_psych_errors -UEP_psych_stats | |
--force | |
--std=c++17 | |
--inline-suppr | |
--suppress=missingInclude | |
--suppress=missingIncludeSystem | |
--suppress=unusedFunction:src/EnergyPlus/api/autosizing.cc | |
--suppress=unusedFunction:src/EnergyPlus/api/datatransfer.cc | |
--suppress=unusedFunction:src/EnergyPlus/api/func.cc | |
--suppress=unusedFunction:src/EnergyPlus/api/runtime.cc | |
--suppress=unusedFunction:src/EnergyPlus/api/state.cc | |
--suppress=unusedFunction:src/EnergyPlus/Psychrometrics.cc | |
--enable=all | |
-i EnergyPlus/DXCoils.cc | |
-i EnergyPlus/RefrigeratedCase.cc | |
-i EnergyPlus/SolarShading.cc | |
-j $(nproc) | |
--template='[{file}:{line}]:({severity}),[{id}],{message}' | |
--suppress="uninitvar:*" | |
./src | |
3>&1 1>&2 2>&3 | tee cppcheck.txt | |
- name: Parse and colorize cppcheck | |
if: always() && steps.cpp_check_run.outcome == 'success' | |
run: python ./scripts/dev/colorize_cppcheck_results.py | |
- name: Upload cppcheck results as artifact | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: EnergyPlus-${{ github.sha }}-cppcheck_results.txt | |
path: cppcheck.txt |