From 88d9e43d850c65a3029f91d54c0ca3deeb96f7b8 Mon Sep 17 00:00:00 2001 From: Toby Davis Date: Sat, 21 Oct 2023 02:05:32 +0100 Subject: [PATCH] Different clang install? --- .github/workflows/wheels.yaml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index f9acb776..79f5c7ff 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -287,13 +287,18 @@ jobs: with: xcode-version: latest + # - name: Install Clang + # if: matrix.os == 'macos-latest' + # uses: KyleMayes/install-llvm-action@v1 + # with: + # version: "15.0" + # directory: "./llvm" + # env: on + - name: Install Clang if: matrix.os == 'macos-latest' - uses: KyleMayes/install-llvm-action@v1 - with: - version: "15.0" - directory: "./llvm" - env: on + run: | + brew install llvm libomp - name: Build Wheels if: runner.os == 'macOS' @@ -309,8 +314,8 @@ jobs: GITHUB_ACTIONS: ON LIBRAPID_GET_BLAS: OFF LIBRAPID_GET_FFTW: OFF - CC: ./llvm/bin/clang - CXX: ./llvm/bin/clang++ + CC: clang + CXX: clang++ run: | python -m pip install cibuildwheel