EB: don't abort for no-op case in unsupported addFineLevels functions #2382
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: smoke | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-smoke | |
cancel-in-progress: true | |
jobs: | |
multid: | |
name: GNU Multi-D | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dependencies | |
run: | | |
.github/workflows/dependencies/dependencies.sh | |
.github/workflows/dependencies/dependencies_clang-tidy-apt-llvm.sh 17 | |
.github/workflows/dependencies/dependencies_ccache.sh | |
- name: Set Up Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/ccache | |
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | |
restore-keys: | | |
ccache-${{ github.workflow }}-${{ github.job }}-git- | |
- name: Build & Install | |
env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wnon-virtual-dtor -Wlogical-op -Wmisleading-indentation -Wduplicated-cond -Wduplicated-branches -Wmissing-include-dirs"} | |
run: | | |
export CCACHE_COMPRESS=1 | |
export CCACHE_COMPRESSLEVEL=10 | |
export CCACHE_MAXSIZE=40M | |
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy | |
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt | |
ccache -z | |
mkdir build | |
cd build | |
cmake .. \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DAMReX_SPACEDIM="1;2;3" \ | |
-DAMReX_EB=ON \ | |
-DCMAKE_CXX_STANDARD=17 \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | |
make -j 4 | |
make install | |
make test_install | |
${{github.workspace}}/Tools/C_scripts/mmclt.py --input ${{github.workspace}}/ccache.log.txt | |
make -j4 -k -f clang-tidy-ccache-misses.mak \ | |
CLANG_TIDY=clang-tidy-17 \ | |
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*" | |
mkdir ../Tests/SpackSmokeTest/build | |
cd ../Tests/SpackSmokeTest/build | |
cmake .. \ | |
-DCMAKE_VERBOSE_MAKEFILE=ON \ | |
-DAMReX_ROOT=../../../installdir \ | |
-DCMAKE_CXX_STANDARD=17 \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | |
make -j 4 | |
mpiexec -n 2 ./install_test ../../Amr/Advection_AmrCore/Exec/inputs-ci | |
ccache -s | |
du -hs ~/.cache/ccache |