-
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.
- Loading branch information
Showing
2 changed files
with
6 additions
and
5 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 |
---|---|---|
|
@@ -126,11 +126,11 @@ jobs: | |
# GitHub actions comes with libomp already installed, but for its native arch only. Must build universal one | ||
# manually so that both x86 and arm builds can be built. | ||
run: | | ||
brew install coreutils | ||
brew install libomp | ||
brew fetch --retry coreutils && brew install coreutils | ||
brew fetch --retry libomp && brew install libomp | ||
if [[ ${{ matrix.cibw_archs }} == "arm64" ]] ; then | ||
echo "Building universal libomp manually" | ||
sh add_arm_to_libomp_dylib.sh | ||
sh add_arm_to_libomp_dylib.sh || exit 1 | ||
fi | ||
- uses: pypa/[email protected] | ||
|
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