Skip to content

Commit

Permalink
chore: Comment out dependency installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
cauliyang committed Oct 30, 2023
1 parent adb2d87 commit a242369
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,18 +116,18 @@ jobs:
if: matrix.os == 'macos-latest'
uses: Homebrew/actions/setup-homebrew@master

- name: Install Dependencies
if: matrix.os == 'macos-latest'
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: Install Dependencies
# if: matrix.os == 'macos-latest'
# 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: Install Poetry
run: |
Expand Down

0 comments on commit a242369

Please sign in to comment.