forked from erf-model/ERF
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (31 loc) · 1003 Bytes
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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@v4
with:
submodules: true
- name: Configure Project and Generate Build System
run: |
cmake -S . -B build `
-DCMAKE_INSTALL_PREFIX:PATH=${{runner.workspace}}/ERF/install `
-DCMAKE_BUILD_TYPE:STRING=Debug `
-DERF_DIM:STRING=3 `
-DERF_ENABLE_MPI:BOOL=OFF `
-DERF_ENABLE_TESTS:BOOL=ON `
-DERF_ENABLE_ALL_WARNINGS:BOOL=OFF `
-DERF_ENABLE_FCOMPARE:BOOL=ON `
${{github.workspace}};
- name: Compile and Link
run: |
cmake --build build --parallel 2 --verbose
- name: CMake Tests # see file ERF/Tests/CTestList.cmake
run: |
ctest -L regression -VV
working-directory: ${{runner.workspace}}/ERF/build