Skip to content

Commit

Permalink
Maybe it'll do something different this time
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed Oct 21, 2023
1 parent 6bdfe69 commit 9630897
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ jobs:
with:
xcode-version: latest

# This doesn't work for some reason
# - name: Install Clang
# if: matrix.os == 'macos-13'
# uses: KyleMayes/install-llvm-action@v1
Expand All @@ -296,12 +297,12 @@ jobs:
# directory: "./llvm"
# env: on

- name: Install Clang
if: matrix.os == 'macos-13'
run: |
rm -f '/usr/local/bin/2to3'
rm -f '/usr/local/bin/2to3-*'
brew install llvm libomp
# This also doesn't work :(
# - name: Install Clang
# if: matrix.os == 'macos-13'
# run: |
# rm -f '/usr/local/bin/2to3*'
# brew install llvm libomp

- name: Build Wheels
if: runner.os == 'macOS'
Expand All @@ -318,8 +319,8 @@ jobs:
GITHUB_ACTIONS: ON
LIBRAPID_GET_BLAS: OFF
LIBRAPID_GET_FFTW: OFF
CC: /usr/local/opt/llvm/bin/clang
CXX: /usr/local/opt/llvm/bin/clang++
CC: $(brew --prefix llvm)/bin/clang
CXX: $(brew --prefix llvm)/bin/clang++

run: |
python -m pip install cibuildwheel
Expand Down

0 comments on commit 9630897

Please sign in to comment.