From 80fe90477a6346d470d3ccda9edc8b56e75a12e3 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sat, 9 Mar 2024 14:49:28 +0100 Subject: [PATCH] CI: Disable autotools build on Windows It fails with this error: cc1.exe: error: CPU you selected does not support x86-64 instruction set --- .github/workflows/c-cpp.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 32c2fd788..242965077 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -12,6 +12,9 @@ jobs: matrix: os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-12', 'windows-2022'] build-system: ['autotools', 'meson'] + exclude: + - os: 'windows-2022' + build-system: 'autotools' fail-fast: false runs-on: ${{ matrix.os }}