-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build ssl lib like brew formula
- Loading branch information
Michael Bonani
authored
Jul 7, 2021
1 parent
627bd6d
commit a8bee7b
Showing
2 changed files
with
9 additions
and
10 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 |
---|---|---|
|
@@ -291,17 +291,18 @@ jobs: | |
#workaround until devops deploy | ||
- script: | | ||
brew uninstall [email protected] | ||
brew untap local/openssl | ||
brew bundle | ||
displayName: 'Install dependencies with HomeBrew' | ||
- script: | | ||
brew tap mobsya/brewqt https://github.com/mobsya/brewqt | ||
brew extract --version=1.0.2t openssl mobsya/brewqt | ||
brew install mobsya/brewqt/[email protected] | ||
brew info openssl | ||
displayName: 'Setting openssl version to 1.0.0' | ||
curl -sL http://www.openssl.org/source/openssl-1.0.2t.tar.gz | tar xzf - -C . | ||
cd openssl-1.0.2t | ||
perl ./Configure --prefix=/usr/local/Cellar/[email protected]/1.0.2t --openssldir=/usr/local/etc/openssl no-ssl2 no-ssl3 no-zlib shared enable-cms darwin64-x86_64-cc enable-ec_nistp_64_gcc_128 | ||
make depend | ||
make | ||
make test | ||
make install MANDIR=/usr/local/Cellar/[email protected]/1.0.2t/share/man MANSUFFIX=ssl | ||
displayName: 'Setting openssl version to 1.0.2' | ||
- script: | | ||
git submodule update --init --recursive | ||
|
@@ -355,8 +356,6 @@ jobs: | |
#we need 7z to extract qt so brew needs to run first | ||
#workaround until devops deploy | ||
- script: | | ||
brew uninstall [email protected] | ||
brew untap local/openssl | ||
brew bundle | ||
displayName: 'Install dependencies with HomeBrew' | ||
|