Giovanni Mascellani : ci: Properly pass -W flags for cross tests building.
Module: vkd3d Branch: master Commit: 54239da20086720221827d3fb930076e751d6a7d URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/54239da20086720221827d3fb93007... Author: Giovanni Mascellani <gmascellani(a)codeweavers.com> Date: Fri Oct 6 16:15:26 2023 +0200 ci: Properly pass -W flags for cross tests building. --- gitlab/build-crosstest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/build-crosstest b/gitlab/build-crosstest index 38eb3e11..4a1341a0 100755 --- a/gitlab/build-crosstest +++ b/gitlab/build-crosstest @@ -14,7 +14,7 @@ set -Eeuxo pipefail rm -fr build mkdir build cd build -../configure CROSSCC32="i686-w64-mingw32-gcc" CROSSCC64="x86_64-w64-mingw32-gcc" CFLAGS="-g -O2 -Wno-array-bounds -Werror" && \ +../configure CROSSCC64="x86_64-w64-mingw32-gcc -Wno-array-bounds -Werror" CROSSCC32="i686-w64-mingw32-gcc -Wno-array-bounds -Werror" && \ make -j$(nproc) crosstest || \ touch ../pipeline_failed
participants (1)
-
Alexandre Julliard