Skip to content

remove plot/checkfile writing at the end of Evolve_MB that creates ex… #95

remove plot/checkfile writing at the end of Evolve_MB that creates ex…

remove plot/checkfile writing at the end of Evolve_MB that creates ex… #95

Workflow file for this run

name: MacOS
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-macos
cancel-in-progress: true
jobs:
MacOS-Clang:
name: Apple [email protected]
runs-on: macos-latest
# env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual"}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Dependencies
run: Submodules/AMReX/.github/workflows/dependencies/dependencies_mac.sh
- name: Configure Project and Generate Build System
run: |
cmake \
-B${{runner.workspace}}/ERF/build \
-DBUILD_SHARED_LIBS:BOOL=TRUE \
-DCMAKE_CXX_COMPILER_LAUNCHER=$(which ccache) \
-DCMAKE_BUILD_TYPE:STRING=Debug \
-DERF_DIM:STRING=3 \
-DERF_ENABLE_MPI:BOOL=TRUE \
-DERF_ENABLE_TESTS:BOOL=TRUE \
-DERF_ENABLE_ALL_WARNINGS:BOOL=TRUE \
-DERF_ENABLE_FCOMPARE:BOOL=TRUE \
${{github.workspace}};
- name: Compile and Link
run: |
cmake --build ${{runner.workspace}}/ERF/build --parallel 2 --verbose
- name: CMake Tests # see file ERF/Tests/CTestList.cmake
run: |
ctest -L regression -VV
working-directory: ${{runner.workspace}}/ERF/build