9
9
10
10
strategy :
11
11
matrix :
12
+ os : [ubuntu-latest, ubuntu-20.04]
12
13
compiler :
13
14
- pkg : g++-7
14
15
exe : g++-7
20
21
exe : g++-10
21
22
- pkg : g++-11
22
23
exe : g++-11
24
+ - pkg : g++-12
25
+ exe : g++-12
23
26
- pkg : clang-8
24
27
exe : clang++-8
25
28
- pkg : clang-9
30
33
exe : clang++-11
31
34
- pkg : clang-12
32
35
exe : clang++-12
33
-
34
- runs-on : ubuntu-latest
36
+ - pkg : clang-13
37
+ exe : clang++-13
38
+ - pkg : clang-14
39
+ exe : clang++-14
40
+ exclude :
41
+ - os : ubuntu-latest
42
+ compiler.pkg : g++-7
43
+ - os : ubuntu-latest
44
+ compiler.pkg : g++-8
45
+ - os : ubuntu-latest
46
+ compiler.pkg : g++-9
47
+ - os : ubuntu-latest
48
+ compiler.pkg : clang-8
49
+ - os : ubuntu-latest
50
+ compiler.pkg : clang-9
51
+ - os : ubuntu-latest
52
+ compiler.pkg : clang-10
53
+ - os : ubuntu-latest
54
+ compiler.pkg : clang-11
55
+ - os : ubuntu-20.04
56
+ compiler.pkg : g++-10
57
+ - os : ubuntu-20.04
58
+ compiler.pkg : g++-11
59
+ - os : ubuntu-20.04
60
+ compiler.pkg : g++-12
61
+ - os : ubuntu-20.04
62
+ compiler.pkg : clang-12
63
+ - os : ubuntu-20.04
64
+ compiler.pkg : clang-13
65
+ - os : ubuntu-20.04
66
+ compiler.pkg : clang-14
67
+
68
+ runs-on : ${{ matrix.os }}
35
69
36
70
steps :
37
71
- uses : actions/checkout@v3
52
86
CTEST_OUTPUT_ON_FAILURE : 1
53
87
run : ctest --timeout 30 -C Debug -j4
54
88
55
- linux-extra :
56
- timeout-minutes : 15
57
-
58
- strategy :
59
- matrix :
60
- compiler : [g++, clang++]
61
- id_type : ["std::uint32_t", "std::uint64_t"]
62
- cxx_std : [cxx_std_17, cxx_std_20]
63
-
64
- runs-on : ubuntu-latest
65
-
66
- steps :
67
- - uses : actions/checkout@v3
68
- - name : Compile tests
69
- working-directory : build
70
- env :
71
- CXX : ${{ matrix.compiler }}
72
- run : |
73
- cmake -DENTT_BUILD_TESTING=ON -DENTT_CXX_STD=${{ matrix.cxx_std }} -DENTT_ID_TYPE=${{ matrix.id_type }} ..
74
- make -j4
75
- - name : Run tests
76
- working-directory : build
77
- env :
78
- CTEST_OUTPUT_ON_FAILURE : 1
79
- run : ctest --timeout 30 -C Debug -j4
80
-
81
89
windows :
82
90
timeout-minutes : 15
83
91
@@ -107,29 +115,6 @@ jobs:
107
115
CTEST_OUTPUT_ON_FAILURE : 1
108
116
run : ctest --timeout 30 -C Debug -j4
109
117
110
- windows-extra :
111
- timeout-minutes : 15
112
-
113
- strategy :
114
- matrix :
115
- id_type : ["std::uint32_t", "std::uint64_t"]
116
- cxx_std : [cxx_std_17, cxx_std_20]
117
-
118
- runs-on : windows-latest
119
-
120
- steps :
121
- - uses : actions/checkout@v3
122
- - name : Compile tests
123
- working-directory : build
124
- run : |
125
- cmake -DENTT_BUILD_TESTING=ON -DENTT_CXX_STD=${{ matrix.cxx_std }} -DENTT_ID_TYPE=${{ matrix.id_type }} ..
126
- cmake --build . -j 4
127
- - name : Run tests
128
- working-directory : build
129
- env :
130
- CTEST_OUTPUT_ON_FAILURE : 1
131
- run : ctest --timeout 30 -C Debug -j4
132
-
133
118
macos :
134
119
timeout-minutes : 15
135
120
runs-on : macOS-latest
@@ -147,23 +132,24 @@ jobs:
147
132
CTEST_OUTPUT_ON_FAILURE : 1
148
133
run : ctest --timeout 30 -C Debug -j4
149
134
150
- macos- extra :
135
+ extra :
151
136
timeout-minutes : 15
152
137
153
138
strategy :
154
139
matrix :
140
+ os : [windows-latest, macOS-latest, ubuntu-latest]
155
141
id_type : ["std::uint32_t", "std::uint64_t"]
156
142
cxx_std : [cxx_std_17, cxx_std_20]
157
143
158
- runs-on : macOS-latest
144
+ runs-on : ${{ matrix.os }}
159
145
160
146
steps :
161
147
- uses : actions/checkout@v3
162
148
- name : Compile tests
163
149
working-directory : build
164
150
run : |
165
151
cmake -DENTT_BUILD_TESTING=ON -DENTT_CXX_STD=${{ matrix.cxx_std }} -DENTT_ID_TYPE=${{ matrix.id_type }} ..
166
- make -j4
152
+ cmake --build . -j 4
167
153
- name : Run tests
168
154
working-directory : build
169
155
env :
0 commit comments