-
Notifications
You must be signed in to change notification settings - Fork 2
77 lines (66 loc) · 1.88 KB
/
msvc.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: MSVC
on: [push, pull_request]
jobs:
build-and-test:
strategy:
matrix:
include:
# Visual Studio 2019
- toolset: '14.2'
arch: 'x64'
build_type: 'Release'
flags: '/std:c++20'
win_ver: '2022'
# Visual Studio 2022
- toolset: '14.3'
arch: 'x64'
build_type: 'Release'
flags: '/std:c++latest'
win_ver: '2022'
- toolset: '14.3'
arch: 'x64'
build_type: 'Release'
flags: '/std:c++latest /DMOMO_USE_SAFE_MAP_BRACKETS /DMOMO_USE_UNORDERED_HINT_ITERATORS /DMOMO_DISABLE_TYPE_INFO'
win_ver: '2022'
- toolset: '14.3'
arch: 'x64'
build_type: 'Debug'
flags: '/std:c++latest'
win_ver: '2022'
- toolset: '14.3'
arch: 'x86'
build_type: 'Release'
flags: '/std:c++latest'
win_ver: '2022'
- toolset: '14.3'
arch: 'x86'
build_type: 'Release'
flags: '/std:c++latest /DMOMO_USE_SAFE_MAP_BRACKETS /DMOMO_USE_UNORDERED_HINT_ITERATORS /DMOMO_DISABLE_TYPE_INFO'
win_ver: '2022'
# - toolset: '14.3'
# arch: 'x86'
# build_type: 'Debug'
# flags: '/std:c++latest'
# win_ver: '2022'
runs-on: windows-${{ matrix.win_ver }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Ninja
run: choco install ninja
- name: Setup MSVC
uses: TheMrMilchmann/setup-msvc-dev@v2
with:
arch: ${{ matrix.arch }}
toolset: ${{ matrix.toolset }}
- name: Build
env:
CXXFLAGS: ${{ matrix.flags }}
run: |
cd test
mkdir build
cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build . -v
- name: Test
run: test/build/momo_test.exe