@@ -203,9 +203,7 @@ jobs:
203
203
# Install libmysql separately so I will see what's up if it fails
204
204
- name : vcpkg install libmysql (classic mode)
205
205
if : matrix.build-type.key == 'debug'
206
- run : >-
207
- # Temporary GCC14 workaround
208
- CFLAGS="-Wno-implicit-function-declaration -Wno-int-conversion"
206
+ run : |
209
207
vcpkg install libmysql
210
208
211
209
- name : vcpkg install ${{ matrix.qt.vcpkg-qt }} (classic mode)
@@ -215,9 +213,7 @@ jobs:
215
213
216
214
- name : vcpkg install ${{ matrix.qt.vcpkg-tinyorm }} (classic mode)
217
215
if : matrix.build-type.key == 'debug'
218
- run : >-
219
- # Temporary GCC14 workaround
220
- CFLAGS="-Wno-implicit-function-declaration -Wno-int-conversion"
216
+ run : |
221
217
vcpkg install ${{ matrix.qt.vcpkg-tinyorm-features }} --clean-after-build
222
218
223
219
# Prepare TinyORM-HelloWorld-TinyDrivers project
@@ -275,11 +271,9 @@ jobs:
275
271
# CMAKE_DISABLE_PRECOMPILE_HEADERS=ON is correct (no need to use PCH for one TU)
276
272
# VCPKG_APPLOCAL_DEPS=OFF is correct as everything is linked statically on Linux
277
273
# Don't use ccache for the VcpkgManifest method as the vcpkg has its own binary caching
278
- # CFLAGS is a temporary GCC14 workaround because of libedit dependency of libmysql
279
274
- name : HelloWorld-TinyDrivers cmake configure (${{ env.HelloWorldVcpkgManifestBuildName }})
280
275
working-directory : HelloWorld-TinyDrivers
281
276
run : >-
282
- CFLAGS="-Wno-implicit-function-declaration -Wno-int-conversion"
283
277
cmake --log-level=DEBUG --log-context
284
278
-S .
285
279
-B "$HelloWorldVcpkgManifestBuildTree"
0 commit comments