|
15 | 15 | fail-fast: false
|
16 | 16 | matrix:
|
17 | 17 | config:
|
18 |
| - # GCC-7 |
19 |
| - - { |
20 |
| - name: "Linux GCC 7 Debug (C++17)", artifact: "Linux.tar.xz", |
21 |
| - os: ubuntu-latest, |
22 |
| - build_type: Debug, |
23 |
| - cc: "gcc-7", cxx: "g++-7", |
24 |
| - cxx_standard: 17 |
25 |
| - } |
26 |
| - - { |
27 |
| - name: "Linux GCC 7 Release (C++17)", artifact: "Linux.tar.xz", |
28 |
| - os: ubuntu-latest, |
29 |
| - build_type: RelWithDebInfo, |
30 |
| - cc: "gcc-7", cxx: "g++-7", |
31 |
| - cxx_standard: 17 |
32 |
| - } |
33 |
| - |
34 |
| - # GCC-8 |
35 |
| - - { |
36 |
| - name: "Linux GCC 8 Debug (C++17)", artifact: "Linux.tar.xz", |
37 |
| - os: ubuntu-latest, |
38 |
| - build_type: Debug, |
39 |
| - cc: "gcc-8", cxx: "g++-8", |
40 |
| - cxx_standard: 17 |
41 |
| - } |
42 |
| - - { |
43 |
| - name: "Linux GCC 8 Release (C++17)", artifact: "Linux.tar.xz", |
44 |
| - os: ubuntu-latest, |
45 |
| - build_type: RelWithDebInfo, |
46 |
| - cc: "gcc-8", cxx: "g++-8", |
47 |
| - cxx_standard: 17 |
48 |
| - } |
49 |
| - |
50 |
| - # GCC-9 |
51 |
| - - { |
52 |
| - name: "Linux GCC 9 Debug (C++17)", artifact: "Linux.tar.xz", |
53 |
| - os: ubuntu-latest, |
54 |
| - build_type: Debug, |
55 |
| - cc: "gcc-9", cxx: "g++-9", |
56 |
| - cxx_standard: 17 |
57 |
| - } |
58 |
| - - { |
59 |
| - name: "Linux GCC 9 Release (C++17)", artifact: "Linux.tar.xz", |
60 |
| - os: ubuntu-latest, |
61 |
| - build_type: RelWithDebInfo, |
62 |
| - cc: "gcc-9", cxx: "g++-9", |
63 |
| - cxx_standard: 17 |
64 |
| - } |
65 |
| - - { |
66 |
| - name: "Linux GCC 9 Debug (C++20)", artifact: "Linux.tar.xz", |
67 |
| - os: ubuntu-latest, |
68 |
| - build_type: Debug, |
69 |
| - cc: "gcc-9", cxx: "g++-9", |
70 |
| - cxx_standard: 20 |
71 |
| - } |
72 |
| - - { |
73 |
| - name: "Linux GCC 9 Release (C++20)", artifact: "Linux.tar.xz", |
74 |
| - os: ubuntu-latest, |
75 |
| - build_type: RelWithDebInfo, |
76 |
| - cc: "gcc-9", cxx: "g++-9", |
77 |
| - cxx_standard: 20 |
78 |
| - } |
79 |
| - |
80 | 18 | # GCC-10
|
81 | 19 | - {
|
82 | 20 | name: "Linux GCC 10 Debug (C++17)", artifact: "Linux.tar.xz",
|
@@ -123,66 +61,6 @@ jobs:
|
123 | 61 | cxx_standard: 20,
|
124 | 62 | }
|
125 | 63 |
|
126 |
| - # Clang-8 |
127 |
| - - { |
128 |
| - name: "Linux Clang 8 Debug (C++17)", artifact: "Linux.tar.xz", |
129 |
| - os: ubuntu-latest, |
130 |
| - build_type: Debug, |
131 |
| - cc: "clang-8", cxx: "clang++-8", |
132 |
| - cxx_standard: 17 |
133 |
| - } |
134 |
| - - { |
135 |
| - name: "Linux Clang 8 Release (C++17)", artifact: "Linux.tar.xz", |
136 |
| - os: ubuntu-latest, |
137 |
| - build_type: RelWithDebInfo, |
138 |
| - cc: "clang-8", cxx: "clang++-8", |
139 |
| - cxx_standard: 17 |
140 |
| - } |
141 |
| - - { |
142 |
| - name: "Linux Clang 8 Debug (C++20)", artifact: "Linux.tar.xz", |
143 |
| - os: ubuntu-latest, |
144 |
| - build_type: Debug, |
145 |
| - cc: "clang-8", cxx: "clang++-8", |
146 |
| - cxx_standard: 20 |
147 |
| - } |
148 |
| - - { |
149 |
| - name: "Linux Clang 8 Release (C++20)", artifact: "Linux.tar.xz", |
150 |
| - os: ubuntu-latest, |
151 |
| - build_type: RelWithDebInfo, |
152 |
| - cc: "clang-8", cxx: "clang++-8", |
153 |
| - cxx_standard: 20 |
154 |
| - } |
155 |
| - |
156 |
| - # Clang-9 |
157 |
| - - { |
158 |
| - name: "Linux Clang 9 Debug (C++17)", artifact: "Linux.tar.xz", |
159 |
| - os: ubuntu-latest, |
160 |
| - build_type: Debug, |
161 |
| - cc: "clang-9", cxx: "clang++-9", |
162 |
| - cxx_standard: 17 |
163 |
| - } |
164 |
| - - { |
165 |
| - name: "Linux Clang 9 Release (C++17)", artifact: "Linux.tar.xz", |
166 |
| - os: ubuntu-latest, |
167 |
| - build_type: RelWithDebInfo, |
168 |
| - cc: "clang-9", cxx: "clang++-9", |
169 |
| - cxx_standard: 17, |
170 |
| - } |
171 |
| - - { |
172 |
| - name: "Linux Clang 9 Debug (C++20)", artifact: "Linux.tar.xz", |
173 |
| - os: ubuntu-latest, |
174 |
| - build_type: Debug, |
175 |
| - cc: "clang-9", cxx: "clang++-9", |
176 |
| - cxx_standard: 20 |
177 |
| - } |
178 |
| - - { |
179 |
| - name: "Linux Clang 9 Release (C++20)", artifact: "Linux.tar.xz", |
180 |
| - os: ubuntu-latest, |
181 |
| - build_type: RelWithDebInfo, |
182 |
| - cc: "clang-9", cxx: "clang++-9", |
183 |
| - cxx_standard: 20, |
184 |
| - } |
185 |
| - |
186 | 64 | # Clang-10
|
187 | 65 | - {
|
188 | 66 | name: "Linux Clang 10 Debug (C++20)", artifact: "Linux.tar.xz",
|
|
0 commit comments