From 74ff126af3f2db0ffa4133038d72abd16e6d4baf Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 12 Jun 2024 16:02:05 +0200 Subject: [PATCH] workflows vcpkg bugfix GCC14 and libmysql --- .github/workflows/vcpkg-linux-drivers.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vcpkg-linux-drivers.yml b/.github/workflows/vcpkg-linux-drivers.yml index 9b6aae726..349cb026e 100644 --- a/.github/workflows/vcpkg-linux-drivers.yml +++ b/.github/workflows/vcpkg-linux-drivers.yml @@ -258,10 +258,11 @@ jobs: # CMAKE_DISABLE_PRECOMPILE_HEADERS=ON is correct (no need to use PCH for one TU) # VCPKG_APPLOCAL_DEPS=OFF is correct as everything is linked statically on Linux # Don't use ccache for the VcpkgManifest method as the vcpkg has its own binary caching + # CFLAGS is a temporary GCC14 workaround because of libedit dependency of libmysql - name: HelloWorld-TinyDrivers cmake configure (vcpkgmanifest-gcc-${{ matrix.build-type.key }}) working-directory: HelloWorld-TinyDrivers run: >- - cmake + CFLAGS="-Wno-implicit-function-declaration -Wno-int-conversion" cmake --log-level=DEBUG --log-context -S . -B "$RUNNER_WORKSPACE/HelloWorld-builds-cmake/build-TinyDrivers-vcpkgmanifest-gcc-${{ matrix.build-type.key }}"