From 97f99466343def1d2b1de18398c0b345e821688d 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 63cd66022..11e414bb1 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -34,7 +34,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