Skip to content

Commit

Permalink
Merge pull request #185 from Stremio/openssl-fix
Browse files Browse the repository at this point in the history
Update OpenSSL to 1.1.1i and remove MacOS workarounds
  • Loading branch information
shteryana committed Jan 4, 2021
2 parents a9cba1c + 3ea68df commit aebccee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/shell.yaml
Expand Up @@ -49,10 +49,6 @@ jobs:

- name: Dependencies
run: |
brew uninstall openssl@1.0.2t
brew uninstall python@2.7.17
brew untap local/openssl
brew untap local/python2
brew update-reset
brew update
npm -g install appdmg
Expand Down
7 changes: 4 additions & 3 deletions appveyor.yml
Expand Up @@ -19,9 +19,10 @@ install:
- git submodule update --init --recursive

# Install OpenSSL
- ps: Start-FileDownload 'https://slproweb.com/download/Win32OpenSSL-1_1_1h.exe'
- ps: Start-Process "Win32OpenSSL-1_1_1h.exe" -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait
- del "Win32OpenSSL-1_1_1h.exe"
- ps: $env:OPENSSL_INSTALLER = "Win32OpenSSL-1_1_1i.exe"
- ps: Start-FileDownload "https://slproweb.com/download/$env:OPENSSL_INSTALLER"
- ps: Start-Process "$env:OPENSSL_INSTALLER" -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes" -Wait
- ps: del "$env:OPENSSL_INSTALLER"
- set OPENSSL_BIN_PATH=C:\OpenSSL-Win32\bin

# Temp debugging
Expand Down

0 comments on commit aebccee

Please sign in to comment.