-
Notifications
You must be signed in to change notification settings - Fork 177
142 lines (139 loc) · 4.19 KB
/
ci_windows_msvc.yml
File metadata and controls
142 lines (139 loc) · 4.19 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
name: CI Windows/MSVC
on:
push:
pull_request:
defaults:
run:
shell: bash
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows 2022 MSVC 2022 Win32",
os: windows-2022,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32"
}
- {
name: "Windows 2022 MSVC 2022 x64",
os: windows-2022,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64"
}
- {
name: "Windows 2025 MSVC 2022 Win32 C++11",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32",
cxx_standard: 11
}
- {
name: "Windows 2025 MSVC 2022 x64 C++11",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64",
cxx_standard: 11
}
- {
name: "Windows 2025 MSVC 2022 Win32 C++14",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32",
cxx_standard: 14
}
- {
name: "Windows 2025 MSVC 2022 x64 C++14",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64",
cxx_standard: 14
}
- {
name: "Windows 2025 MSVC 2022 Win32 C++17",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32",
cxx_standard: 17
}
- {
name: "Windows 2025 MSVC 2022 x64 C++17",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64",
cxx_standard: 17
}
- {
name: "Windows 2025 MSVC 2022 Win32 C++20",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32",
cxx_standard: 20
}
- {
name: "Windows 2025 MSVC 2022 x64 C++20",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64",
cxx_standard: 20
}
- {
name: "Windows 2025 MSVC 2022 Win32 C++23",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32",
cxx_standard: 23
}
- {
name: "Windows 2025 MSVC 2022 x64 C++23",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64",
cxx_standard: 23
}
- {
name: "Windows 2025 MSVC 2022 Win32 C++26",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "Win32",
cxx_standard: 26
}
- {
name: "Windows 2025 MSVC 2022 x64 C++26",
os: windows-2025,
build_type: Debug,
generator: "Visual Studio 17 2022",
architecture: "x64",
cxx_standard: 26
}
steps:
- uses: actions/checkout@v3
- name: Build project
run: |
cmake -S . -B build \
-G "${{ matrix.config.generator }}" \
-A ${{ matrix.config.architecture }} \
-DENABLE_TESTING=ON \
-DWARNINGS_AS_ERRORS_FOR_TESTS=ON \
-DOVERRIDE_CXX_STANDARD_FOR_TESTS=${{ matrix.config.cxx_standard }}
cmake --build build --config ${{ matrix.config.build_type }} -j
- name: Run tests
run: |
ctest --test-dir build/ --verbose -C ${{ matrix.config.build_type }}