From aa11c198af5fe574f70c3a90a3b398be4bb23e2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonin=20D=C3=A9cimo?= Date: Thu, 13 Feb 2025 16:39:34 +0100 Subject: [PATCH] ci: don't build the C library with MinGW Only the C compiler is currently installed, without its binutils. --- .github/workflows/build.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf0af0c1..23d8206d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -163,14 +163,6 @@ jobs: env: CFLAGS: -g -Werror -Wall -Wextra -Wshadow -Wpedantic -Werror=incompatible-pointer-types - - name: Build C library on Windows (make) - if: ${{ runner.os == 'Windows' }} - run: make.sh -j CC="$CC" CFLAGS="$CFLAGS" AR="$AR" - env: - CC: x86_64-w64-mingw32-gcc - AR: x86_64-w64-mingw32-ar - CFLAGS: -g -Werror -Wall -Wextra -Wshadow -Wpedantic -Werror=incompatible-pointer-types - - name: Build C library (CMake) if: ${{ !matrix.use-cross }} run: |