@@ -105,8 +105,8 @@ jobs:
105
105
cmake .. -G "Unix Makefiles" \
106
106
-DBUILD_SHARED_LIBS=ON \
107
107
-DCMAKE_BUILD_TYPE=Release \
108
- -DCMAKE_C_COMPILER=gcc \
109
- -DCMAKE_CXX_COMPILER=g++ \
108
+ -DCMAKE_C_COMPILER=gcc-10 \
109
+ -DCMAKE_CXX_COMPILER=g++-10 \
110
110
-DDRACO_TESTS=ON
111
111
cmake_build_command : cmake --build . -- -j2
112
112
draco_test_command : ./draco_tests
@@ -116,32 +116,8 @@ jobs:
116
116
cmake .. -G "Unix Makefiles" \
117
117
-DBUILD_SHARED_LIBS=ON \
118
118
-DCMAKE_BUILD_TYPE=Release \
119
- -DCMAKE_C_COMPILER=gcc \
120
- -DCMAKE_CXX_COMPILER=g++ \
121
- -DDRACO_TESTS=ON \
122
- -DDRACO_TRANSCODER_SUPPORTED=ON
123
- cmake_build_command : cmake --build . -- -j2
124
- draco_test_command : ./draco_tests
125
-
126
- - test_name : ubuntu22-make-clang14-release-static
127
- os : ubuntu-22.04
128
- cmake_configure_command : |-
129
- cmake .. -G "Unix Makefiles" \
130
- -DBUILD_SHARED_LIBS=OFF \
131
- -DCMAKE_BUILD_TYPE=Release \
132
- -DCMAKE_C_COMPILER=clang-14 \
133
- -DCMAKE_CXX_COMPILER=clang++-14 \
134
- -DDRACO_TESTS=ON
135
- cmake_build_command : cmake --build . -- -j2
136
- draco_test_command : ./draco_tests
137
- - test_name : ubuntu22-make-clang14-release-static-with-transcoder
138
- os : ubuntu-22.04
139
- cmake_configure_command : |-
140
- cmake .. -G "Unix Makefiles" \
141
- -DBUILD_SHARED_LIBS=OFF \
142
- -DCMAKE_BUILD_TYPE=Release \
143
- -DCMAKE_C_COMPILER=clang-14 \
144
- -DCMAKE_CXX_COMPILER=clang++-14 \
119
+ -DCMAKE_C_COMPILER=gcc-10 \
120
+ -DCMAKE_CXX_COMPILER=g++-10 \
145
121
-DDRACO_TESTS=ON \
146
122
-DDRACO_TRANSCODER_SUPPORTED=ON
147
123
cmake_build_command : cmake --build . -- -j2
@@ -153,8 +129,8 @@ jobs:
153
129
cmake .. -G "Unix Makefiles" \
154
130
-DBUILD_SHARED_LIBS=OFF \
155
131
-DCMAKE_BUILD_TYPE=Release \
156
- -DCMAKE_C_COMPILER=gcc \
157
- -DCMAKE_CXX_COMPILER=g++ \
132
+ -DCMAKE_C_COMPILER=gcc-10 \
133
+ -DCMAKE_CXX_COMPILER=g++-10 \
158
134
-DDRACO_TESTS=ON
159
135
cmake_build_command : cmake --build . -- -j2
160
136
draco_test_command : ./draco_tests
@@ -164,8 +140,8 @@ jobs:
164
140
cmake .. -G "Unix Makefiles" \
165
141
-DBUILD_SHARED_LIBS=OFF \
166
142
-DCMAKE_BUILD_TYPE=Release \
167
- -DCMAKE_C_COMPILER=gcc \
168
- -DCMAKE_CXX_COMPILER=g++ \
143
+ -DCMAKE_C_COMPILER=gcc-10 \
144
+ -DCMAKE_CXX_COMPILER=g++-10 \
169
145
-DDRACO_TESTS=ON \
170
146
-DDRACO_TRANSCODER_SUPPORTED=ON
171
147
cmake_build_command : cmake --build . -- -j2
@@ -189,8 +165,7 @@ jobs:
189
165
-DDRACO_TESTS=ON \
190
166
-DDRACO_TRANSCODER_SUPPORTED=ON
191
167
cmake_build_command : cmake --build . --config Release -- -m:2
192
- # TODO(https://github.com/google/draco/issues/938): Flaking on this target.
193
- draco_test_command : Release/draco_tests --gtest_filter=-GltfDecoderTest.TestLoadUnsupportedTexCoordAttributes
168
+ draco_test_command : Release/draco_tests
194
169
195
170
- test_name : windows-msvc-release-static
196
171
os : windows-2019
@@ -210,8 +185,7 @@ jobs:
210
185
-DDRACO_TESTS=ON \
211
186
-DDRACO_TRANSCODER_SUPPORTED=ON
212
187
cmake_build_command : cmake --build . --config Release -- -m:2
213
- # TODO(https://github.com/google/draco/issues/938): Flaking on this target.
214
- draco_test_command : Release/draco_tests --gtest_filter=-GltfDecoderTest.TestLoadUnsupportedTexCoordAttributes
188
+ draco_test_command : Release/draco_tests
215
189
216
190
- test_name : windows-make-release-shared
217
191
os : windows-2019
@@ -235,8 +209,7 @@ jobs:
235
209
-DDRACO_TESTS=ON \
236
210
-DDRACO_TRANSCODER_SUPPORTED=ON
237
211
cmake_build_command : cmake --build . -- -j2
238
- # TODO(https://github.com/google/draco/issues/938): Flaking on this target.
239
- draco_test_command : ./draco_tests --gtest_filter=-GltfDecoderTest.TestLoadUnsupportedTexCoordAttributes
212
+ draco_test_command : ./draco_tests
240
213
241
214
- test_name : windows-make-release-static
242
215
os : windows-2019
@@ -260,8 +233,7 @@ jobs:
260
233
-DDRACO_TESTS=ON \
261
234
-DDRACO_TRANSCODER_SUPPORTED=ON
262
235
cmake_build_command : cmake --build . -- -j2
263
- # TODO(https://github.com/google/draco/issues/938): Flaking on this target.
264
- draco_test_command : ./draco_tests --gtest_filter=-GltfDecoderTest.TestLoadUnsupportedTexCoordAttributes
236
+ draco_test_command : ./draco_tests
265
237
266
238
name : test-${{ matrix.test_name }}
267
239
runs-on : ${{ matrix.os }}
0 commit comments