Skip to content

Commit

Permalink
Test for MacOS build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gediminas Kirsanskas committed May 5, 2024
1 parent bd88c0d commit 8c8b468
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-11]
os: [macos-12, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ build = [
]
skip = [
"*-win32",
"*-manylinux_i686",
"*-win_arm64",
"*i686",
"*aarch64",
"*ppc64le",
"*s390x",
"*universal2",
"*arm64"
"*universal2"
]
14 changes: 13 additions & 1 deletion scripts/cibw_before_all_macos.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
#!/bin/bash
set -e -x

ln -sf /usr/local/bin/gcc-10 /usr/local/bin/gcc
export PATH=/usr/local/bin:$PATH
echo $PATH

ln -sf /usr/local/bin/gcc-12 /usr/local/bin/gcc

gcc --version

ln -sf /usr/local/bin/gcc-12 /usr/local/bin/clang

clang --version

whereis gcc
whereis clang

ls -alF /usr/local/bin/gcc

0 comments on commit 8c8b468

Please sign in to comment.