Skip to content

Commit

Permalink
Try a different permutation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed Oct 21, 2023
1 parent 9630897 commit e76a26f
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,87 +182,87 @@ jobs:


# MacOS x86_64
- os: macos-13
- os: macos-latest
pythonVersion: 37
bitness: 64
platformID: macosx_x86_64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 38
bitness: 64
platformID: macosx_x86_64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 39
bitness: 64
platformID: macosx_x86_64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 310
bitness: 64
platformID: macosx_x86_64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 311
bitness: 64
platformID: macosx_x86_64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 312
bitness: 64
platformID: macosx_x86_64
pythonType: "cp"

# Apple-Silicon MacOS
- os: macos-13
- os: macos-latest
pythonVersion: 38
bitness: 64
platformID: macosx_arm64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 39
bitness: 64
platformID: macosx_arm64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 310
bitness: 64
platformID: macosx_arm64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 311
bitness: 64
platformID: macosx_arm64
pythonType: "cp"

- os: macos-13
- os: macos-latest
pythonVersion: 312
bitness: 64
platformID: macosx_arm64
pythonType: "cp"

# Apple-Silicon MacOS PyPy
# - os: macos-13
# - os: macos-latest
# pythonVersion: 38
# bitness: 64
# platformID: macosx_arm64
# pythonType: "pp"

# - os: macos-13
# - os: macos-latest
# pythonVersion: 39
# bitness: 64
# platformID: macosx_arm64
# pythonType: "pp"

# - os: macos-13
# - os: macos-latest
# pythonVersion: 310
# bitness: 64
# platformID: macosx_arm64
Expand All @@ -283,26 +283,25 @@ jobs:
run: pip install -r requirements.txt

- name: Install XCode
if: matrix.os == 'macos-13'
if: matrix.os == 'macos-latest'
uses: maxim-lobanov/setup-xcode@v1.5.1
with:
xcode-version: latest

# This doesn't work for some reason
# - name: Install Clang
# if: matrix.os == 'macos-13'
# if: matrix.os == 'macos-latest'
# uses: KyleMayes/install-llvm-action@v1
# with:
# version: "15.0"
# directory: "./llvm"
# env: on

# 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: Install Clang
if: matrix.os == 'macos-latest'
run: |
rm -f '/usr/local/bin/2to3*'
brew install llvm libomp
- name: Build Wheels
if: runner.os == 'macOS'
Expand All @@ -319,8 +318,10 @@ jobs:
GITHUB_ACTIONS: ON
LIBRAPID_GET_BLAS: OFF
LIBRAPID_GET_FFTW: OFF
CC: $(brew --prefix llvm)/bin/clang
CXX: $(brew --prefix llvm)/bin/clang++
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 e76a26f

Please sign in to comment.