-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* take into account the extension of the shared lib for macos * build macos wheels for PYPI * add CMake variables related to RPATH for macos * Update config.cmake * Update config.cmake * Update python.yml * set the rpath properly for macOS * upload coverage data only for ubuntu tests * Update setup.py * set INSTALL_NAME_DIR * upload coverage with verbose=true
- Loading branch information
Showing
4 changed files
with
61 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
os: [macos-latest, ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: | | ||
|
@@ -27,6 +27,8 @@ jobs: | |
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD_VERBOSITY: 1 | ||
CIBW_ARCHS_MACOS: x86_64 | ||
CIBW_ENVIRONMENT_MACOS: CC=clang CXX=clang FC=gfortran-11 | ||
CIBW_ARCHS: auto64 | ||
CIBW_SKIP: skip = pp* *-musllinux* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters