-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Configure Homebrew and Install Dependencies
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 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 |
---|---|---|
|
@@ -145,6 +145,20 @@ jobs: | |
virtualenvs-create: false | ||
virtualenvs-in-project: false | ||
|
||
- name: Configure Homebrew | ||
uses: Homebrew/actions/setup-homebrew@master | ||
|
||
- name: Install Dependencies | ||
env: | ||
HOMEBREW_NO_AUTO_UPDATE: 1 | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Do not run brew cleanup automatically. | ||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 # Do not automatically update packages. | ||
run: | | ||
brew install openssl@3 | ||
ln -sf $(brew --prefix openssl)/include/openssl /usr/local/include/openssl | ||
ln -sf $(brew --prefix openssl)/lib/*a /usr/local/lib/ | ||
ln -sf $(brew --prefix openssl)/lib/*dylib /usr/local/lib/ | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
|