From 6401592829c732adb7c5cd40d714f2134eefeb17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Sun, 22 Aug 2021 15:19:33 +0200 Subject: [PATCH] * .gitlab-ci.yml: Skip fuzz testing on MinGW64 --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e498c894..0440819b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -399,7 +399,9 @@ MinGW64: --build=x86_64-pc-linux-gnu --host=$PREFIX --enable-shared - make -j$(nproc) - cp -p src/wget.exe src/wget - - make check -j$(nproc) LOG_COMPILER=wine + # Avoid testing fuzz/ due to linker error (multiple definition of `getaddrinfo') + - make check -C tests -j LOG_COMPILER=wine + - make check -C testenv -j LOG_COMPILER=wine tags: - shared - linux