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 bee94fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ build = [
]
skip = [
"*-win32",
"*-manylinux_i686",
"*i686",
"*aarch64",
"*ppc64le",
"*s390x",
Expand Down
6 changes: 5 additions & 1 deletion scripts/cibw_before_all_macos.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/bin/bash
set -e -x

ln -sf /usr/local/bin/gcc-10 /usr/local/bin/gcc
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

0 comments on commit bee94fd

Please sign in to comment.