fix installation notes for heFFTe #138
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: windows | |
on: [push, pull_request] | |
jobs: | |
# Build all tutorials | |
tests_msvc: | |
name: MSVC C++17 w/o Fortran w/o MPI | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build & Install | |
run: | | |
cd ExampleCodes | |
cmake -S . -B build ` | |
-DCMAKE_BUILD_TYPE=Debug ` | |
-DBUILD_SHARED_LIBS=ON ` | |
-DCMAKE_VERBOSE_MAKEFILE=ON ` | |
-DAMReX_FORTRAN=OFF ` | |
-DAMReX_MPI=OFF ` | |
-DAMReX_LINEAR_SOLVERS=ON ` | |
-DAMReX_EB=ON ` | |
-DAMReX_PARTICLES=ON | |
cmake --build build --config Debug -j 2 | |
# Build all tutorials | |
tutorials_clang: | |
name: Clang C++17 w/o Fortran w/o MPI | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Build & Install | |
shell: cmd | |
run: | | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\vc\Auxiliary\build\vcvarsall.bat" x64 | |
cd ExampleCodes | |
cmake -S . -B build ^ | |
-T "ClangCl" ^ | |
-DCMAKE_BUILD_TYPE=Release ^ | |
-DBUILD_SHARED_LIBS=ON ^ | |
-DCMAKE_VERBOSE_MAKEFILE=ON ^ | |
-DAMReX_FORTRAN=OFF ^ | |
-DAMReX_MPI=OFF ^ | |
-DAMReX_OMP=ON ^ | |
-DAMReX_LINEAR_SOLVERS=ON ^ | |
-DAMReX_EB=ON ^ | |
-DAMReX_PARTICLES=ON | |
cmake --build build --config Release -j 2 |