Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed May 4, 2024
1 parent 392dcc3 commit 62bfa88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,20 @@ jobs:
- name: Compile convective_grad
run: |
cd source/convective_grad
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE CLANG_TIDY_IGNORE_SOURCES="${MICROPHYSICS_HOME} ${AMREX_HOME}" -j 4
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE -j 4
- name: Compile eos_demo
run: |
cd source/eos_demo
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE CLANG_TIDY_IGNORE_SOURCES="${MICROPHYSICS_HOME} ${AMREX_HOME}" -j 4
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE -j 4
- name: Compile fluxes
run: |
cd source/fluxes
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE CLANG_TIDY_IGNORE_SOURCES="${MICROPHYSICS_HOME} ${AMREX_HOME}" -j 4
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE -j 4
- name: Compile max_enuc
run: |
cd source/max_enuc
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE CLANG_TIDY_IGNORE_SOURCES="${MICROPHYSICS_HOME} ${AMREX_HOME}" -j 4
make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE -j 4
3 changes: 3 additions & 0 deletions source/fluxes/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ EXTERN_SEARCH += . ..
USE_AMR_CORE = TRUE

include $(MICROPHYSICS_HOME)/Make.Microphysics

CLANG_TIDY_IGNORE_SOURCES += $(MICROPHYSICS_HOME)
CLANG_TIDY_CONFIG_FILE = ../../.clang-tidy

0 comments on commit 62bfa88

Please sign in to comment.