From 2656962dc02b75bc5597a49f6fd7e0f723969b24 Mon Sep 17 00:00:00 2001 From: Ozaq Date: Thu, 26 Oct 2023 09:05:18 +0200 Subject: [PATCH] Disbaled builds with clang Due to: https://github.com/actions/runner-images/issues/8659 --- .github/workflows/cibuildwheel.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 181297500..3e4a0c571 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -35,7 +35,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toolchain: [ {cc: clang, cxx: clang++}, {cc: gcc, cxx: g++} ] + # Disabled clang build until this is fixed: https://github.com/actions/runner-images/issues/8659 + # toolchain: [ {cc: clang, cxx: clang++}, {cc: gcc, cxx: g++} ] + toolchain: [ {cc: gcc, cxx: g++} ] steps: - name: Checkout uses: actions/checkout@v4