fix compilation error and call 2D uv3dmix with Drhs not Drhs_p #6
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] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-windows | |
cancel-in-progress: true | |
jobs: | |
WIN32-MSVC10: | |
name: WIN32 [email protected] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Configure Project and Generate Build System | |
run: | | |
cmake -S . -B build ` | |
-DCMAKE_INSTALL_PREFIX:PATH=${{runner.workspace}}/ROMSX/install ` | |
-DCMAKE_BUILD_TYPE:STRING=Debug ` | |
-DROMSX_DIM:STRING=3 ` | |
-DROMSX_ENABLE_MPI:BOOL=OFF ` | |
-DROMSX_ENABLE_TESTS:BOOL=ON ` | |
-DROMSX_ENABLE_ALL_WARNINGS:BOOL=OFF ` | |
-DROMSX_ENABLE_FCOMPARE:BOOL=ON ` | |
${{github.workspace}}; | |
- name: Compile and Link | |
run: | | |
cmake --build build --parallel 2 --verbose | |
# - name: CMake Tests # see file ROMSX/Tests/CTestList.cmake | |
# run: | | |
# ctest | |
# working-directory: ${{runner.workspace}}/ROMSX/build |