Rework phys_bc to use BCRec #50
Workflow file for this run
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: "clang-tidy" | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
clang_tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get submodules | |
run: | | |
git submodule update --init | |
cd external/Microphysics | |
git fetch; git checkout development | |
echo "MICROPHYSICS_HOME=$(pwd)" >> $GITHUB_ENV | |
cd ../amrex | |
git fetch; git checkout development | |
echo "AMREX_HOME=$(pwd)" >> $GITHUB_ENV | |
cd ../.. | |
- name: Install dependencies | |
run: | | |
.github/workflows/dependencies_clang-tidy-apt-llvm.sh 17 | |
- name: Compile wdconvect | |
run: | | |
echo $AMREX_HOME | |
echo $MICROPHYSICS_HOME | |
cd Exec/science/wdconvect | |
make USE_MPI=FALSE USE_OMP=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-17 CLANG_TIDY_WARN_ERROR=TRUE -j 4 | |